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