[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs0847-3.cs
1 // CS0847: An array initializer of length `2' was expected
2 // Line: 9
3
4 class M
5 {
6         public static void Main ()
7         {
8                 int[,,] i = { { { 0, 0 }, { 1, 1} },
9                         { { 2, 2 } } };
10         }
11 }