ExprUnboundLambda
namespace Microsoft.CSharp.RuntimeBinder.Semantics
{
internal sealed class ExprUnboundLambda : ExprWithType
{
public ExprUnboundLambda(CType type)
: base(ExpressionKind.UnboundLambda, type)
{
}
}
}