[w32file] Move MonoIO.Find{First,Next,Close} to managed
[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 }