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

cs0178.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 31e8f096c0fe937a2b83ab1b25ec5185ae20f012 (plain)
1
2
3
4
5
6
7
8
9
10
// CS0178: Invalid rank specifier: expected `,' or `]'
// Line: 8

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