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

cs0108-10.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 152a671596be4e8e1bb45905b82116d8236ac9bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0108.cs: The new keyword is required on 'Derived.EE' because it hides inherited member
// Line: 11

class Base {
	public enum EE {
            Item
        };
}

class Derived : Base {
        public int EE;
}