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

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

using System;

interface I
{
	T Foo<T>(IComparable T);
}