2005-07-13 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / errors / gcs0401.cs
1 // gcs0401.cs: The new() constraint must be last.
2 // Line: 6
3
4 class Foo<T>
5         where T : new (), new ()
6 {
7 }