[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0412.cs
1 // CS0412: The type parameter name `T' is the same as local variable or parameter name
2 // Line: 6
3
4 class C
5 {
6         public void Foo<T> (string T)
7         {
8         }
9 }