Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

16 lines
257 B
C#

// CS1744: Named argument `a' cannot be used for a parameter which has positional argument specified
// Line: 13
static class C
{
public static int Test (this int a, int b)
{
return a * 3 + b;
}
public static void Main ()
{
1.Test (a : 2);
}
}