Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0538.cs
index 81e74f838b6e671582cba978e08a90151e6a6916..a22cf4be25a07c46585993e6336d6259fa09c4c7 100644 (file)
@@ -1,13 +1,16 @@
-// cs0538.cs: 'BaseClass' in explicit interface declaration is not an interface
-// Line: 9
+// CS0538: The type `BaseClass' in explicit interface declaration is not an interface
+// Line: 11
 
-class BaseClass {
-        public void Foo() {}
+class BaseClass
+{
+       public void Foo() {}
 }
 
-class InstanceClass: BaseClass {
-        void BaseClass.Foo() {
-        }
+class InstanceClass: BaseClass
+{
+       void BaseClass.Foo()
+       {
+       }
 }