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
update readme (#21797)
[mono-project.git]
/
mcs
/
errors
/
cs1738-3.cs
blob
901ac0e5d59fd79ad80b7bd50b5adc2bd57b5fa6
1
// CS1738: Named arguments must appear after the positional arguments when using language version older than 7.2
2
// Line: 14
3
4
class
C
5
{
6
int this
[
int
a
,
string
s
] {
7
get
{
8
return
1
;
9
}
10
}
11
12
void
Test
()
13
{
14
var
r
=
this
[
a
:
1
,
"out"
];
15
}
16
}