Merge branch 'master' of github.com:mono/mono
[mono.git] / mcs / tests / dtest-implicitarray-01.cs
1 public class C
2 {
3         void Method ()
4         {
5         }
6         
7         public static int Main ()
8         {
9                 dynamic d = new C ();
10                 var a = new [] { d, (object) null };
11                 a[0].Method();
12                 return 0;
13         }
14 }