2 using System
.Linq
.Expressions
;
11 public int Goo (bool hoo
)
15 Expression
<Func
<bool>> a
= () => hoo
;
20 Expression
<Func
<bool>> b
= () => local_hoo
;
25 Expression
<Func
<int>> c
= () => ThisMethod ();
26 if (c
.Compile ()() != 33)
29 Console
.WriteLine ("OK");
33 public static int Main ()