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