[xbuild] Remove ErrorTest.TestExecute1()
[mono.git] / mcs / errors / cs0502.cs
index 1a578596c8bb9b5b2addf6f66073c03a941f65d8..54979376c8839117b2c6ccf632c96ed9802de16c 100644 (file)
@@ -1,8 +1,8 @@
-// cs0502.cs: 'Main.Test()' cannot be both abstract and sealed
+// CS0502: `Main.Test()' cannot be both abstract and sealed
 // Line: 10
 
 abstract class Base {
-    public abstract void Test () {}
+    public abstract void Test ();
 }
 
 abstract class Main: Base