Merge pull request #5444 from hifi/fix-tds-inputoutput
[mono.git] / mcs / errors / cs0401.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 }