2009-04-07 Marek Habersack <mhabersack@novell.com>
[mono.git] / mcs / errors / gcs1644-2.cs
index f06075a77915d88e45f6b4c9c8670a8ce0b5c8fa..6ee0afd488d7a4d859bb162b00f41ef0cc70d71a 100644 (file)
@@ -1,7 +1,13 @@
-// cs1644.cs: Feature 'generics' cannot be used because it is not part of the standardized ISO C# language specification
+// cs1644.cs: Feature `generics' cannot be used because it is not part of the C# 1.0 language specification
 // Line: 5
 // Compiler options: -langversion:ISO-1
 
-class X<V> : V
+class X<V>
 {
 }
+
+class X
+{
+       static void Main ()
+       { }
+}