repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-01-03 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0111-19.cs
blob
24dd7712c629eb34152c774474d105a00081f979
1
// CS0111: A member `C.Foo()' is already defined. Rename this member or use different parameter types
2
// Line: 11
3
4
5
public partial class
C
6
{
7
void
Foo
()
8
{
9
}
10
11
partial void
Foo
();
12
13
partial void
Foo
()
14
{
15
}
16
}