[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs8323.cs
blobc6c9309ec0da320acb967033c5ea69a369ef7929
1 // CS8323: Named argument `str' is used out of position but is followed by positional argument
2 // Line: 9
3 // Compiler options: -langversion:7.2
5 class X
7 public static void Main ()
9 Test (str: "", "");
12 static void Test (int arg, string str)