[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0846.cs
blob2eb46fcb59ad6552ea24faf7c5e1fb48abd1d223
1 // CS0846: A nested array initializer was expected
2 // Line: 8
4 class M
6 public static void Main ()
8 int[,] i = new int[1, 1] { 2 };