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
[interp] Fall back to old implementation when calling on proxy
[mono-project.git]
/
mcs
/
errors
/
CS0506-3-lib.cs
blob
e7fc0e99ce041dbad8cf8c3eecfde1ad0eeb60ff
1
public interface
ITest
2
{
3
void
Run
();
4
}
5
6
public class
A
7
{
8
public void
Run
()
9
{
10
}
11
}
12
13
public class
B
:
A
,
ITest
14
{
15
}