summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0693-3.cs
blob: c24d3870873ce5a47178550853c1767e3468a19e (plain)
1
2
3
4
5
6
7
8
9
10
// CS0693: Type parameter `T' has the same name as the type parameter from outer type `C<T>'
// Line: 7
// Compiler options: -warnaserror -warn:3

class C<T>
{
	void Foo<T> (T t)
	{
	}
}