for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git] / mcs / errors / cs0108-10.cs
blob4d76ba28f4caea8d142eaabc07cfe0584ff64a3e
1 // CS0108: `Derived.EE' hides inherited member `Base.EE'. Use the new keyword if hiding was intended
2 // Line: 12
3 // Compiler options: -warnaserror -warn:2
5 class Base {
6 public enum EE {
7 Item
8 };
11 class Derived : Base {
12 public int EE;