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

c1.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8b81c046864e453fd4bb90bb8f29e738b1e41332 (plain)
1
2
3
4
5
6
7
// cs0146.cs: circular class definition
// Line: 6
class A : B {
}

class B : A {
}