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-04-15 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0111-20.cs
blob
db5540b74fa36e2b747de19c46465f6aca45256b
1
// CS0111: A member `C.Foo()' is already defined. Rename this member or use different parameter types
2
// Line: 12
3
4
5
public partial class
C
6
{
7
partial void
Foo
();
8
}
9
10
public partial class
C
11
{
12
void
Foo
()
13
{
14
}
15
}