repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
remove NotWorking
[mcs.git]
/
tests
/
gtest-097.cs
blob
cc748cd4a9e6cd69ecf67f1cf3ec8b9efae0b24a
1
public interface
IFoo
2
{
3
void
Test
<
T
> ();
4
5
void
Test
<
U
,
V
> ();
6
}
7
8
public class
Foo
:
IFoo
9
{
10
void
IFoo
.
Test
<
X
> ()
11
{ }
12
13
void
IFoo
.
Test
<
Y
,
Z
> ()
14
{ }
15
}
16
17
public interface
IBar
<
T
>
18
{
19
void
Test
();
20
}
21
22
public interface
IBar
<
U
,
V
>
23
{
24
void
Test
();
25
}
26
27
public class
Bar
<
X
,
Y
,
Z
> :
IBar
<
X
>,
IBar
<
Y
,
Z
>
28
{
29
void
IBar
<
X
>.
Test
()
30
{ }
31
32
void
IBar
<
Y
,
Z
>.
Test
()
33
{ }
34
}
35
36
class
X
37
{
38
static void
Main
()
39
{ }
40
}