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

cs0527-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 991f21e886f7ef551bc45c70452ac132ae815496 (plain)
1
2
3
4
5
6
7
8
// cs0146.cs: Circular base class dependency involving 'B' and 'A'
// Line: 7

struct A : B {
}

struct B : A {
}