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
Move Enum and CorElementType to shared (dotnet/coreclr#23177)
[mono-project.git]
/
mcs
/
tests
/
gtest-097.cs
blob
63ead2583e150b9b9dd2cbb8b0a6c2244cdfc31e
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
public static void
Main
()
39
{ }
40
}