2 using System
.Linq
.Expressions
;
3 using System
.Collections
.Generic
;
5 static public class Foo
7 static public int Helper (Expression
<Predicate
<int>> match
)
12 static public void Main ()
14 Expression
<Action
<List
<int>>> exp
= x
=> x
.Add (Helper (i
=> true));
15 exp
.Compile () (new List
<int> { 1 }
);