Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0523-2.cs
1 // CS0523: Struct member `A.a' of type `A?' causes a cycle in the struct layout
2 // Line: 6
3
4 struct A
5 {
6         static A? a;
7 }