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