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: 45f5079461f1b31bd73e0ea5ff48b097ec11d2d3 (plain)
1
2
3
4
5
6
7
// cs0102-6.cs: The type `X' already contains a definition for `A'
// Line: 6

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