remove debug writelines
[mcs.git] / errors / cs0523.cs
blob219954430cd484d49f91a0e334d717768b96f1be
1 // cs0523.cs: Struct member `B.a' of type `A' causes a cycle in the struct layout
2 // Line: 9
4 struct A {
5 B b;
8 struct B {
9 A a;
12 class Y { static void Main () {} }