2009-07-11 Michael Barker <mike@middlesoft.co.uk>
[mono.git] / mcs / errors / cs1744.cs
1 // CS1744: Named argument `a' cannot be used for a parameter which has positional argument specified
2 // Line: 12
3 // Compiler options: -langversion:future
4
5 static class C
6 {
7         public static void Test (int a, int b)
8         {
9         }
10         
11         public static void Main ()
12         {
13                 Test (1, a : 2);
14         }
15 }