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

cs0519.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4f0fa75400a84cd94f039bb01f4d6c4a0d04208e (plain)
1
2
3
4
5
6
7
8
9
10
//using System;

enum System { A }

class X {
	static void Main ()
	{
		System s = new System ();
	}
}