7 lines
134 B
C#
Raw Normal View History

// CS9003: Primary constructor of type `Test<T>' has parameter of same name as type parameter `T'
// Line: 4
class Test<T>(T T)
{
}