[mcs] Fixes codegen for pattern probing with value-type variables
[mono.git] / mcs / errors / cs0108-10.cs
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
4
5 class Base {
6         public enum EE {
7             Item
8         };
9 }
10
11 class Derived : Base {
12         public int EE;
13 }