Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / gtest-lambda-20.cs
1 public class Z
2 {
3         public Z ()
4         {
5                 TestMethod tm = () => Test.Foo ();
6         }
7 }
8
9 public class Test
10 {
11         public static bool Foo ()
12         {
13                 return true;
14         }
15         
16         public static void Main ()
17         {
18         }
19 }
20
21 public delegate void TestMethod ();