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