Merge pull request #3565 from vargaz/no-free-imt-thunks
[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 }