Merge pull request #214 from QuickJack/cd2c570c5543963d987f51080218715407c5d4b9
[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 }