[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs1501-5.cs
blob6a51f13592c8db1da9f9030bc078c55ca004a13e
1 // CS1501: No overload for method `Foo' takes `1' arguments
2 // Line: 12
4 public class Test
6 static void Foo (int a, int b = 1, int c = 2)
10 public static void Main ()
12 Foo (c : -1);