[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0102-18.cs
1 // CS0102: The type `X<T>' already contains a definition for `T'
2 // Line: 11
3
4 class X <T> {
5         int T;
6 }
7
8 class W {
9         static void Main () {}
10 }