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
Reenable AOT, it wasn't enabled on the x86 buildbot anyway.
[mcs.git]
/
tests
/
gtest-032.cs
blob
1b554a5f5fcee648dc93899286d26c9c10ae03bd
1
// Generic interfaces
2
3
interface
Foo
<
S
>
4
{
5
void
Hello
(
S s
);
6
}
7
8
interface
Bar
<
T
,
U
> :
Foo
<
U
>
9
{
10
void
Test
(
T t
,
U u
);
11
}
12
13
class
X
14
{
15
static void
Test
(
Bar
<
int
,
string
>
bar
)
16
{
17
bar
.
Hello
(
"Test"
);
18
bar
.
Test
(
7
,
"Hello"
);
19
}
20
21
static void
Main
()
22
{ }
23
}