Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-anon-36.cs
1 public class Test
2 {
3         public static void Main ()
4         {
5                 new Test (delegate () {});
6         }
7
8         public Test (TestMethod test) {}
9         public Test (TestMethod2 test2) {}
10 }
11
12 public delegate void TestMethod ();
13 public delegate void TestMethod2 (object o);