[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0761-2.cs
blob09964af492f4915731f965509175c1d5643a8946
1 // CS0761: Partial method declarations of `C.Foo<U>()' have inconsistent constraints for type parameter `U'
2 // Line: 8
4 partial class C
6 partial void Foo<T> () where T : new ();
8 partial void Foo<U> ()