2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0108-10.cs
blobfa67e2bb5c03df8fccc7193abb105ba1e685c7de
1 // cs0108-10.cs: `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;