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

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

public class SampleClass {
	class A {}
        
        public void A () {}
}