[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0523-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 }