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
2010-04-13 Sebastien Pouliot <sebastien@ximian.com>
[mono-project.git]
/
mcs
/
tests
/
test-667.cs
blob
dd498cb98262eed7a470f16d64a03ff9d807e5bd
1
interface
IA
2
{
3
void
M
();
4
}
5
6
class
CA
:
IA
7
{
8
void
IA
.
M
()
9
{
10
}
11
}
12
13
class
CC
:
CA
,
IA
14
{
15
public static void
Main
()
16
{
17
}
18
}