update
[mono.git] / mcs / errors / cs0502.cs
index 1a578596c8bb9b5b2addf6f66073c03a941f65d8..0431db0ea5a0579f95b068ea59f2107fa91b5980 100644 (file)
@@ -1,8 +1,8 @@
-// cs0502.cs: 'Main.Test()' cannot be both abstract and sealed
+// cs0502.cs: `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