cleol
[mcs.git] / tests / gtest-lambda-20.cs
blobe767284f76fd513e82ec30ac1e99181421ee2318
1 public class Z
3 public Z ()
5 TestMethod tm = () => Test.Foo ();
9 public class Test
11 public static bool Foo ()
13 return true;
16 public static void Main ()
21 public delegate void TestMethod ();