[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0761.cs
blob72b2744b5fce3404ce56f96289f202a9c0b7f0dd
1 // CS0761: Partial method declarations of `C.Foo<T>()' have inconsistent constraints for type parameter `T'
2 // Line: 8
4 partial class C
6 partial void Foo<U> ();
8 partial void Foo<T> () where T : class