summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0529.cs
blob: 25a7de82f7afa86cc7c27efadbe9ecb92bbb0aa2 (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0529: Inherited interface `C' causes a cycle in the interface hierarchy of `A'
// Line: 10

interface A : B {
}

interface B : C {
}

interface C : A {
}