[sgen] Don't trigger collections during allocation of thread objects (#17970)
[mono-project.git] / mcs / errors / cs0847-3.cs
blob791bb93782fe2641b6bb80652dd5ff2ed43149ee
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 }, { 1, 1} },
9 { { 2, 2 } } };