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
avoid using a custom sources file for the net_2_1_raw profile
[mcs.git]
/
errors
/
cs1738.cs
blob
e2a5ab579003ee132c3b72f2fd1558b8498dd6bf
1
// CS1738: Named arguments must appear after the positional arguments
2
// Line: 12
3
// Compiler options: -langversion:future
4
5
class
C
6
{
7
static void
Foo
(
int
a
,
string
s
)
8
{
9
}
10
11
public static void
Main
()
12
{
13
Foo
(
a
:
1
,
"out"
);
14
}
15
}