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

cs0102-6.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3a8cb0f5df918747dc1e0891f6825917dddadfdb (plain)
1
2
3
4
5
6
7
// cs102.cs: The class 'X' already contains a definition for 'A'
// Line: 6

class X {
	const int A = 10;
	int A () {}
}