[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[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 }