blob: 4d76ba28f4caea8d142eaabc07cfe0584ff64a3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// CS0108: `Derived.EE' hides inherited member `Base.EE'. Use the new keyword if hiding was intended
// Line: 12
// Compiler options: -warnaserror -warn:2
class Base {
public enum EE {
Item
};
}
class Derived : Base {
public int EE;
}
|