summaryrefslogtreecommitdiff
path: root/mcs/errors/cs8038.cs
blob: a35382676467b4909b1cf355a7a740049c5bc098 (plain)
1
2
3
4
5
6
7
// 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) 
{
}