Incremented version number.
[mono.git] / mcs / errors / cs8203.cs
1 //
2 // The type parameters introduce the names into the class namespace, so it is
3 // not possible to have members with the same name as a parameter
4 //
5
6
7 // type parameter is the same name as the class
8
9 class Y <Y> {
10 }
11