[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0761.cs
1 // CS0761: Partial method declarations of `C.Foo<T>()' have inconsistent constraints for type parameter `T'
2 // Line: 8
3
4 partial class C
5 {
6         partial void Foo<U> ();
7         
8         partial void Foo<T> () where T : class
9         {
10         }
11 }