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: 03bc988d5b33d0d6a5913a0f3bb20748b1b2eaa8 (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0529.cs: Inherited interface `A' causes a cycle in the interface hierarchy of `C'
// Line: 10

interface A : B {
}

interface B : C {
}

interface C : A {
}