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

cs1586.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c7037b9237b66388c12c68a6ed41b625b0186943 (plain)
1
2
3
4
5
6
7
8
9
10
// cs01586.cs: Array creation must have array size or array initializer
// Line: 6

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