[interp] Reduce computation under calc_section mutex
[mono-project.git] / mcs / tests / dtest-implicitarray-01.cs
blobb14e374b61a04ce54c1c7a7aa6afe9e30346877e
1 public class C
3 void Method ()
7 public static int Main ()
9 dynamic d = new C ();
10 var a = new [] { d, (object) null };
11 a[0].Method();
12 return 0;