[xbuild] Fix #40094, part 1/2: SolutionParser: Emit `AbsolutePath="..."`
[mono.git] / mcs / errors / cs0114.cs
old mode 100755 (executable)
new mode 100644 (file)
index b3c1f02..73d45ff
@@ -1,9 +1,11 @@
-// cs0114.cs: Y.XX hides inherited member X.XX.  Must use `override' or `new' keyword
-// Line: 8
+// 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
+// Line: 10
+// Compiler options: -warnaserror -warn:2
+
 public abstract class X {
        public abstract void XX ();
 }
 
 class Y : X {
-       void XX ();
+       void XX () {}
 }