repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[Http]: Cosmetic, remove some dead code.
[mono-project.git]
/
mcs
/
errors
/
cs1744.cs
blob
a3b3a32e6e360270488e19bbb4ab78ac2e34fab5
1
// CS1744: Named argument `a' cannot be used for a parameter which has positional argument specified
2
// Line: 12
3
4
static class
C
5
{
6
public static void
Test
(
int
a
,
int
b
)
7
{
8
}
9
10
public static void
Main
()
11
{
12
Test
(
1
,
a
:
2
);
13
}
14
}