GenericParameter.cs: override Module properly
[mcs.git] / tests / test-210.cs
blob76214f5f54f113873ffc165531b0bb4c55afa104
1 delegate void FooHandler ();
3 class X
5 public static void foo ()
6 { }
8 public static void Main ()
10 object o = new FooHandler (foo);
11 ((FooHandler) o) ();