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
Make StringComparer.Create throw ArgumentNullException (#26570)
[mono-project.git]
/
mcs
/
errors
/
cs0853.cs
blob
e164e80224b4df2f823b7686fb4dce4da17435a7
1
// CS0853: An expression tree cannot contain named argument
2
// Line: 15
3
4
using
System
;
5
using
System
.
Linq
.
Expressions
;
6
7
class
M
8
{
9
static void
Named
(
int
i
)
10
{
11
}
12
13
public static void
Main
()
14
{
15
Expression
<
Action
>
e
= () =>
Named
(
i
:
1
);
16
}
17
}