eol
[mcs.git] / tests / test-anon-36.cs
blob10607b42685cd3c64a3bee60c2786e49524ff404
1 public class Test
3 public static void Main ()
5 new Test (delegate () {});
8 public Test (TestMethod test) {}
9 public Test (TestMethod2 test2) {}
12 public delegate void TestMethod ();
13 public delegate void TestMethod2 (object o);