2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs1744.cs
blob3427f80bbf20d76f42535ed2d60fa77fc59f9a43
1 // CS1744: Named argument `a' cannot be used for a parameter which has positional argument specified
2 // Line: 13
3 // Compiler options: -langversion:future
5 static class C
7 public static int Test (this int a, int b)
9 return a * 3 + b;
12 public static void Main ()
14 1.Test (a : 2);