[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / errors / cs0114.cs
blob73d45ff8e268f599214277490c721eebdd6ab6cd
1 // CS0114: `Y.XX()' hides inherited member `X.XX()'. To make the current member override that implementation, add the override keyword. Otherwise add the new keyword
2 // Line: 10
3 // Compiler options: -warnaserror -warn:2
5 public abstract class X {
6 public abstract void XX ();
9 class Y : X {
10 void XX () {}