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