blob: a3b3a32e6e360270488e19bbb4ab78ac2e34fab5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// CS1744: Named argument `a' cannot be used for a parameter which has positional argument specified
// Line: 12
static class C
{
public static void Test (int a, int b)
{
}
public static void Main ()
{
Test (1, a : 2);
}
}
|