[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / errors / cs0108-7.cs
blob83adb25f1b029ef58cdbae7394202f27e9ae130f
1 // CS0108: `Derived.Prop(bool)' hides inherited member `Base.Prop'. Use the new keyword if hiding was intended
2 // Line: 13
3 // Compiler options: -warnaserror -warn:2
5 class Base {
6 public bool Prop = false;
9 class Derived : Base {
10 public void Prop (bool b) {}