[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs1502.cs
bloba19c9e544a6c5819ddc30be5f3f808730d019604
1 // CS1502: The best overloaded method match for `X.foo(ref int)' has some invalid arguments
2 // Line: 8
3 class X {
4 public void foo (ref int blah) {}
6 public void bar (ref int baz)
8 foo(out baz);
11 static void Main ()