[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0449.cs
1 // CS0449: The `class' or `struct' constraint must be the first constraint specified
2 // Line: 6
3
4 interface I
5 {
6         void Foo<T> () where T : class, struct;
7 }