Merge pull request #4845 from lambdageek/dev-coop-delegates
[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
4 static class C
5 {
6         public static int Test (this int a, int b)
7         {
8                 return a * 3 + b;
9         }
10         
11         public static void Main ()
12         {
13                 1.Test (a : 2);
14         }
15 }