Updated.
[mono.git] / mcs / errors / gcs0401.cs
index c1c5f083293c644fe1cea78c8fd4331c27b12e07..ac95556b2f5bb7241fde9e64d0c8cde011706a87 100644 (file)
@@ -1,7 +1,6 @@
-// CS0401: The new() constraint must be the last constraint specified
-// Line: 6
+// CS0401: The `new()' constraint must be the last constraint specified
+// Line: 4
 
-class Foo<T>
-       where T : new (), new ()
+class Foo<T> where T : new (), new ()
 {
 }