Forgot to commit
[mono.git] / mcs / errors / cs0529.cs
index 52e725162d0205242d651119d32a7e66f8cd3bfd..03bc988d5b33d0d6a5913a0f3bb20748b1b2eaa8 100644 (file)
@@ -1,7 +1,11 @@
-// cs0529: Recursive interface definition
-// Line: 3
+// cs0529.cs: Inherited interface `A' causes a cycle in the interface hierarchy of `C'
+// Line: 10
+
 interface A : B {
 }
 
-interface B : A {
+interface B : C {
 }
+
+interface C : A {
+}
\ No newline at end of file