[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs1744-2.cs
blobec146be77111aa8fa2cba9a15909ae1b6f246ede
1 // CS1744: Named argument `a' cannot be used for a parameter which has positional argument specified
2 // Line: 13
4 static class C
6 public static int Test (this int a, int b)
8 return a * 3 + b;
11 public static void Main ()
13 1.Test (a : 2);