Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0846.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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 };
	}
}