summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0527-2.cs
blob: b89e498c6af186f8aad117973e5b11fd66ab14f4 (plain)
1
2
3
4
5
6
7
8
// CS0527: Type `B' in interface list is not an interface
// Line: 4

struct A : B {
}

struct B : A {
}