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

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

class C
{
	public void Foo<T> (int value)
	{
		int T;
	}
}