[xbuild] More tweaks for portable debug mode
[mono-project.git] / mcs / errors / cs1744-3.cs
blobb899816d213a0559308a45e9a133666833e61b5f
1 // CS1744: Named argument `p1' cannot be used for a parameter which has positional argument specified
2 // Line: 8
4 internal class Program
6 public static void Main ()
8 Method (1, 2, p1: 3);
11 static void Method (int p1, int paramNamed, int p2)
15 static void Method (int p1, int p2, object paramNamed)