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

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

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