[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs0534.cs
old mode 100755 (executable)
new mode 100644 (file)
index f17b8a0..0e41d7e
@@ -1,4 +1,4 @@
-// cs0534.cs: `Y' does not implement inherited abstract member `myAbstract'
+// CS0534: `Y' does not implement inherited abstract member `X.myAbstract()'
 // Line: 5
 
 abstract class X {
@@ -6,5 +6,6 @@ abstract class X {
 }
 
 class Y : X {
+static void Main (){}
 }