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
2009-10-22 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
errors
/
cs1744.cs
blob
14d1f7ca208c816a3be2c19bbe7143687d88526e
1
// CS1744: Named argument `a' cannot be used for a parameter which has positional argument specified
2
// Line: 12
3
// Compiler options: -langversion:future
4
5
static class
C
6
{
7
public static void
Test
(
int
a
,
int
b
)
8
{
9
}
10
11
public static void
Main
()
12
{
13
Test
(
1
,
a
:
2
);
14
}
15
}