Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gcs0412.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 874a0a6e1f5be0422017c037ba8fbe88a06cece9 (plain)
1
2
3
4
5
6
7
8
9
// CS0412: The type parameter name `T' is the same as `method parameter'
// Line: 6

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