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

struct S<T>
{
	S<int> s;
}