repo.or.cz
/
mono-debugger.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-03-11 Zoltan Varga <vargaz@gmail.com>
[mono-debugger.git]
/
mono
/
tests
/
interface1.cs
blob
251c8692e4022551407aaea8cb6598bec40d913d
1
namespace
intf
{
2
public class
A
{
3
public virtual int
method
() {
4
return
1
;
5
}
6
}
7
public interface
B
{
8
int
method
();
9
}
10
public class
C
:
A
,
B
{
11
12
static int
Main
() {
13
C c
=
new
C
();
14
if
(
c
.
method
() !=
1
)
15
return
1
;
16
return
0
;
17
}
18
}
19
}