summaryrefslogtreecommitdiff
path: root/mcs/tests/dtest-implicitarray-01.cs
blob: b14e374b61a04ce54c1c7a7aa6afe9e30346877e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
public class C
{
	void Method ()
	{
	}
	
	public static int Main ()
	{
		dynamic d = new C ();
		var a = new [] { d, (object) null };
		a[0].Method();
		return 0;
	}
}