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

cs0284.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7d867e571200079313a132be8b5a03082f33c040 (plain)
1
2
3
4
5
6
7
8
9
// cs0284.cs: Can not create array with negative size
// Line: 7

class X {
	static void Main ()
	{
		int [] x = new int [-4];
	}
}