Replace SIZEOF_REGISTER with sizeof(mgreg_t) for consistency with sizeof(gpointer)
[mono.git] / mcs / errors / gcs0523.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 }