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
Merge pull request #1861 from saper/home-override
[mono-project.git]
/
mcs
/
tests
/
gtest-549.cs
blob
d732bc5bd6ef35f29da64c741fd0da61fcf75034
1
class
C
<
T
>
2
{
3
public interface
IA
4
{
5
void
MA
(
T arg
);
6
}
7
8
public interface
IB
:
IA
9
{
10
void
MB
(
T arg
);
11
}
12
}
13
14
class
D
:
C
<
int
>
15
{
16
public class
Impl
:
IB
17
{
18
public void
MA
(
int
arg
)
19
{
20
}
21
22
public void
MB
(
int
arg
)
23
{
24
}
25
}
26
}
27
28
class
Test
29
{
30
public static void
Main
()
31
{
32
C
<
int
>.
IB arg
=
new
D
.
Impl
();
33
arg
.
MA
(
1
);
34
arg
.
MB
(
1
);
35
}
36
}