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
2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs0111.cs
blob
82fce7546e1e65622cfabf03abfc079d4981af95
1
// cs0111.cs: `Blah.Foo(int, int)' is already defined. Rename this member or use different parameter types
2
// Line : 10
3
4
public class
Blah
{
5
6
static public void
Foo
(
int
i
,
int
j
)
7
{
8
}
9
10
static public void
Foo
(
int
i
,
int
j
)
11
{
12
}
13
14
public static void
Main
()
15
{
16
int
i
=
1
;
17
int
j
=
2
;
18
19
Foo
(
i
,
j
);
20
}
21
}