Merge remote branch 'upstream/master'
[mono.git] / mcs / errors / cs1744-2.cs
1 // CS1744: Named argument `a' cannot be used for a parameter which has positional argument specified
2 // Line: 13
3 // Compiler options: -langversion:future
4
5 static class C
6 {
7         public static int Test (this int a, int b)
8         {
9                 return a * 3 + b;
10         }
11         
12         public static void Main ()
13         {
14                 1.Test (a : 2);
15         }
16 }