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-714.cs
blob
02604a0b792827576b5cfc0802e3e849a293e1c1
1
using
System
;
2
3
class
Hello
:
IFoo
4
{
5
void
IBar
.
Test
()
6
{
7
}
8
9
static void
Main
()
10
{
11
}
12
}
13
14
interface
IBar
15
{
16
void
Test
();
17
}
18
19
interface
IFoo
:
IBar
20
{
21
}