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-098.cs
blob
5dc31331426d19de1600a187149e1d1fbc1b7d43
1
// Compiler options: /r:gtest-098-lib.dll
2
public class
Foo
:
IFoo
3
{
4
void
IFoo
.
Test
<
X
> ()
5
{ }
6
7
void
IFoo
.
Test
<
Y
,
Z
> ()
8
{ }
9
}
10
11
public class
Bar
<
X
,
Y
,
Z
> :
IBar
<
X
>,
IBar
<
Y
,
Z
>
12
{
13
void
IBar
<
X
>.
Test
()
14
{ }
15
16
void
IBar
<
Y
,
Z
>.
Test
()
17
{ }
18
}
19
20
class
X
21
{
22
static void
Main
()
23
{ }
24
}