Updated with review feedback.
[mono.git] / mcs / errors / cs0847-2.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},
9                         { 1 } };
10         }
11 }