Merge pull request #3565 from vargaz/no-free-imt-thunks
[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 }