2010-06-24 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / errors / gcs0523-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 }