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

cs0523.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 43b016e62648f39bb141fd7a9e2d17e9a80a9b79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0523.cs: circular structure definition
//

struct A {
	B b;
}

struct B {
	A a;
}

class Y { static void Main () {} }