New test.
[mono.git] / mcs / errors / gcs0401.cs
1 // CS0401: The new() constraint must be the last constraint specified
2 // Line: 6
3
4 class Foo<T>
5         where T : new (), new ()
6 {
7 }