[w32file] Move MonoIO.Find{First,Next,Close} to managed
[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 }