[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs1502-13.cs
blobf85564b9ac739def2b6d6e040253cbfd2e3fc448
1 // CS1502: The best overloaded method match for `T.Blah(out int)' has some invalid arguments
2 // Line: 11
4 using System;
6 class T {
7 static void Blah (out int g) { g = 0; }
9 static int Main (string [] args) {
10 IntPtr g;
11 Blah (out g);
12 return (int) g;