[runtime] Avoid indirection when building MonoContext on darwin
[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 }