Merge pull request #5636 from BrzVlad/fix-xmm-scan
[mono.git] / mcs / errors / cs0523-6.cs
1 // CS0523: Struct member `A<T>.a' of type `A<T>' causes a cycle in the struct layout
2 // Line: 6
3
4 struct A<T>
5 {
6         A<T> a;
7 }