[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[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 }