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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs1738.cs
blob
537bc17b917c662a397edc918a6005f6437091b1
1
// CS1738: Named arguments must appear after the positional arguments when using language version older than 7.2
2
// Line: 12
3
4
class
C
5
{
6
static void
Foo
(
int
a
,
string
s
)
7
{
8
}
9
10
public static void
Main
()
11
{
12
Foo
(
a
:
1
,
"out"
);
13
}
14
}