2006-12-05 Chris Toshok <toshok@ximian.com>
[mcs.git] / tests / test-anon-36.cs
blob88de2c794f6122914bedbf8bc3026ce69269fcac
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);