(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs0108-10.cs
blob152a671596be4e8e1bb45905b82116d8236ac9bc
1 // cs0108.cs: The new keyword is required on 'Derived.EE' because it hides inherited member
2 // Line: 11
4 class Base {
5 public enum EE {
6 Item
7 };
10 class Derived : Base {
11 public int EE;