summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0412.cs
blob: 7e94245ac208c1b1b57a03078c89ae44916c054d (plain)
1
2
3
4
5
6
7
8
9
// CS0412: The type parameter name `T' is the same as local variable or parameter name
// Line: 6

class C
{
	public void Foo<T> (string T)
	{
	}
}