Flush (work in progress)
[mono.git] / mcs / errors / cs0527-2.cs
1 // CS0527: Type `B' in interface list is not an interface
2 // Line: 4
3
4 struct A : B {
5 }
6
7 struct B : A {
8 }