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

gcs0694.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 84a818420240411e8de3161282294b9cebdccd2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//
// The type parameters introduce the names into the class namespace, so it is
// not possible to have members with the same name as a parameter
//


// type parameter is the same name as the class

class Y <Y> {
}

class Test
{
	static void Main ()
	{ }
}