Merge pull request #5082 from kumpera/fix-ro-fs-file-delete
[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 }