[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0704.cs
1 // CS0704: A nested type cannot be specified through a type parameter `T' 
2 // Line: 6
3
4 class G<T>
5 {
6         T.A x;
7 }