[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0847-2.cs
blob69d54ae22b9fb2a2f74742324426b3006e85d93a
1 // CS0847: An array initializer of length `2' was expected
2 // Line: 9
4 class M
6 public static void Main ()
8 int[,] i = { {0, 0},
9 { 1 } };