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

cs0150.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fc67a91086e325e00ffcdedbc156e17417ca1f66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// cs0150.cs :
// Line :

using System;

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