**** Merged r40732-r40872 from MCS ****
[mono.git] / mcs / errors / cs0108-10.cs
1 // cs0108.cs: The new keyword is required on 'Derived.EE' because it hides inherited member
2 // Line: 12
3 // Compiler options: -warnaserror -warn:2
4
5 class Base {
6         public enum EE {
7             Item
8         };
9 }
10
11 class Derived : Base {
12         public int EE;
13 }