summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0523-3.cs
blob: 1ee8ecceb9d8ee99cca002bb472db9e518f6f3be (plain)
1
2
3
4
5
6
7
// CS0523: Struct member `S<T>.s' of type `S<T[]>' causes a cycle in the struct layout
// Line: 6

struct S<T>
{
	static S<T[]> s;
}