[bcl] Update BCL Linked Size
[mono-project.git] / mcs / errors / cs0523.cs
blobcbf63caff1fe2812afd50e39231fe08793cd391c
1 // CS0523: 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 () {} }