Merge pull request #3587 from henricm/fix-set-no-delay-tcp-only
[mono.git] / mcs / errors / cs0523.cs
1 // CS0523: Struct member `B.a' of type `A' causes a cycle in the struct layout
2 // Line: 9
3
4 struct A {
5         B b;
6 }
7
8 struct B {
9         A a;
10 }
11
12 class Y { static void Main () {} }