[w32handle] Remove unused header includes
[mono-project.git] / mcs / tests / test-336.cs
blobed2c6f337f7e3e8c4e9165dfcfeefe58db1a9314
1 using System;
3 public delegate void Foo ();
4 public delegate void Bar (int x);
6 class X
8 public X (Foo foo)
9 { }
11 public X (Bar bar)
12 { }
14 static void Test ()
15 { }
17 public static void Main ()
19 X x = new X (Test);