new tests.
[mono.git] / mcs / errors / cs0527-2.cs
index e312377061b2acb76555b30c3c06004ece84ac3b..89a41cf9efc5544b6e023f6a1f528611d66bd9a7 100644 (file)
@@ -1,8 +1,8 @@
-class A1 {
-}
+// cs0527-2.cs: Type `A' in interface list is not an interface
+// Line: 7
 
-class A2 {
+struct A : B {
 }
 
-class B : A1, A2 {
-}
+struct B : A {
+}
\ No newline at end of file