repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix all CreateInstance overloads for void
[mcs.git]
/
errors
/
gcs1744.cs
blob
3427f80bbf20d76f42535ed2d60fa77fc59f9a43
1
// CS1744: Named argument `a' cannot be used for a parameter which has positional argument specified
2
// Line: 13
3
// Compiler options: -langversion:future
4
5
static class
C
6
{
7
public static int
Test
(
this int
a
,
int
b
)
8
{
9
return
a
*
3
+
b
;
10
}
11
12
public static void
Main
()
13
{
14
1
.
Test
(
a
:
2
);
15
}
16
}