summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0846.cs
blob: 2eb46fcb59ad6552ea24faf7c5e1fb48abd1d223 (plain)
1
2
3
4
5
6
7
8
9
10
// CS0846: A nested array initializer was expected
// Line: 8

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