Merge pull request #5693 from lateralusX/lateralusX/disable-stack-overflow-win-x64
[mono.git] / mcs / errors / cs0523-3.cs
1 // CS0523: Struct member `S<T>.s' of type `S<T[]>' causes a cycle in the struct layout
2 // Line: 6
3
4 struct S<T>
5 {
6         static S<T[]> s;
7 }