Add new sample error case, from Dan
[mono.git] / mcs / errors / cs0523.cs
1 // cs0523.cs: circular structure definition
2 //
3
4 struct A {
5         B b;
6 }
7
8 struct B {
9         A a;
10 }
11
12 class Y { static void Main () {} }