[arm64] Add the full neon regs to the context
[mono.git] / mcs / errors / cs0847-4.cs
1 // CS0847: An array initializer of length `3' was expected
2 // Line: 9
3
4 class M
5 {
6         public static void Main ()
7         {
8                 int[,,] i = { { { 0, 0, 0 }, { 1, 1, 1 } },
9                         { { 2 }, { 3, 3, 3 } } };
10         }
11 }