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: d727961395ce2431a773218d485c71e3b7cda3ff (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0519.cs: `System' clashes with a predefined namespace
// Line: 1

enum System { A }

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