[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs8038.cs
1 // CS8038: Primary constructor of type `Test<T>' has parameter of same name as type parameter `T'
2 // Line: 4
3 // Compiler options: -langversion:experimental
4
5 class Test<T>(T T) 
6 {
7 }