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

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