0ee0fce0c3c0dd93adbd8d5b7e5f1720233fe2b2
[mono.git] / mcs / errors / gcs0523-4.cs
1 // CS0523: Struct member `S<T>.s' of type `S<int>' causes a cycle in the struct layout
2 // Line: 6
3
4 struct S<T>
5 {
6         S<int> s;
7 }