[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[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;