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

struct A<T>
{
	A<T> a;
}