2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / errors / gcs0102.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 // First error.
7 class X <T> {
8         int T;
9 }
10
11 class W {
12         static void Main () {}
13 }