[interp] Reduce computation under calc_section mutex
[mono-project.git] / mcs / 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) ();