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
[System.Data] Try to fix random DataViewTest.DefaultColumnNameAddListChangedTest...
[mono-project.git]
/
mcs
/
errors
/
cs0754.cs
blob
bf4873364f4e957fc769682bfbc0b85f6af76c02
1
// CS0754: A partial method `C.I.Foo()' cannot explicitly implement an interface
2
// Line: 12
3
4
5
public interface
I
6
{
7
void
Foo
();
8
}
9
10
public partial class
C
:
I
11
{
12
partial void
I
.
Foo
();
13
}