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 #1821 from iainx/replace-getline
[mono-project.git]
/
mcs
/
errors
/
cs0757.cs
blob
55863217d04ceaecf8afd3db0dcded463a480341
1
// CS0757: A partial method `C.Foo()' implementation is already defined
2
// Line: 11
3
4
5
public partial class
C
6
{
7
partial void
Foo
()
8
{
9
}
10
11
partial void
Foo
()
12
{
13
}
14
}