8 lines
181 B
C#
Raw Normal View History

// CS8038: Primary constructor of type `Test<T>' has parameter of same name as type parameter `T'
// Line: 4
// Compiler options: -langversion:experimental
class Test<T>(T T)
{
}