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: 47be8ec08a7e2be08b2e93cd59b57054d8345880 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0178.cs :
// Line :

using System;

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