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
/
cs0100-2.cs
blob
9da2049af7425fed9f257acb2624a1fe4146a13c
1
// CS0100: The parameter name `a' is a duplicate
2
// Line: 10
3
4
using
System
;
5
6
class
C
7
{
8
static void
Main
()
9
{
10
Func
<
int
,
int
,
int
>
l
= (
a
,
a
) =>
1
;
11
}
12
}