summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0847-2.cs
blob: 69d54ae22b9fb2a2f74742324426b3006e85d93a (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0847: An array initializer of length `2' was expected
// Line: 9

class M
{
	public static void Main ()
	{
		int[,] i = { {0, 0},
			{ 1 } };
	}
}