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: 52e725162d0205242d651119d32a7e66f8cd3bfd (plain)
1
2
3
4
5
6
7
// cs0529: Recursive interface definition
// Line: 3
interface A : B {
}

interface B : A {
}