* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / errors / gcs0694.cs
index b11371958fccd9bb527f1f727cfdb5e1680b12c6..7751c21cc368240a2ccaa42912a6ac707d4bdd0c 100644 (file)
@@ -1,11 +1,12 @@
-//
-// 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
+// gcs0694.cs: Type parameter `Y' has same name as containing type, or method
+// Line: 4
 
 class Y <Y> {
 }
 
+class Test
+{
+       static void Main ()
+       { }
+}
+