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
Merge pull request #3806 from BrzVlad/feature-parallel-gc-final
[mono-project.git]
/
mcs
/
errors
/
cs0111.cs
blob
75accf6e109041e0ffdabd00dc751c12a7fd9a03
1
// CS0111: A member `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
}