Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0529.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6dd0bb09df0fe2429332a88b2bd3cab95c683d67 (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 {
}