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
for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git]
/
mcs
/
errors
/
cs8324.cs
blob
8a0be1aefb9818bd9e8fbb0ec4879fc00b3442f4
1
// CS8324: Named argument specifications must appear after all fixed arguments have been specified in a dynamic invocation
2
// Line: 10
3
// Compiler options: -langversion:7.2
4
5
class
C
6
{
7
void
M
()
8
{
9
dynamic
d
=
new object
();
10
d
.
M
(
arg
:
1
,
""
);
11
}
12
}