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

gcs0102.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2cb23f3d8d4f5c55f5deaef7f3cfd3ee380a7280 (plain)
1
2
3
4
5
6
7
8
9
10
// gcs0102.cs: The type `X<T>' already contains a definition for `T'
// Line: 11

class X <T> {
	int T;
}

class W {
	static void Main () {}
}