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
[interp] Fall back to old implementation when calling on proxy
[mono-project.git]
/
mcs
/
errors
/
cs0100.cs
blob
84787324742522a2980748d070720211a7f00ba3
1
// CS0100: The parameter name `a' is a duplicate
2
// Line: 6
3
//
4
// Author:
5
// Alejandro Snchez Acosta <raciel@es.gnu.org>
6
//
7
// (C) Alejandro Snchez Acosta
8
//
9
10
public class
X
11
{
12
public void
Add
(
int
a
,
int
a
)
13
{
14
int
c
;
15
c
=
a
+
a
;
16
Console
.
WriteLine
(
c
);
17
}
18
19
static void
Main
()
20
{
21
this
.
Add
(
3
,
5
);
22
}
23
}
24