c1c5f083293c644fe1cea78c8fd4331c27b12e07
[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 }