cleol
[mcs.git] / errors / cs1744.cs
blob14d1f7ca208c816a3be2c19bbe7143687d88526e
1 // CS1744: Named argument `a' cannot be used for a parameter which has positional argument specified
2 // Line: 12
3 // Compiler options: -langversion:future
5 static class C
7 public static void Test (int a, int b)
11 public static void Main ()
13 Test (1, a : 2);