repo.or.cz
/
mono-project
/
dkf.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-02-10 Jeffrey Stedfast <fejj@novell.com>
[mono-project/dkf.git]
/
mcs
/
tests
/
gtest-157.cs
blob
f314b01af4a8ea47481aa43173be8fee758a2e5e
1
interface
a
<
t
>
{ void x (); }
2
3
interface
b
<
t
> :
a
<
t
> {}
4
5
class
kv
<
k
,
v
> {}
// type t
6
7
interface
c
<
k
,
v
>:
b
<
kv
<
k
,
v
>>,
// b <t>
8
a
<
kv
<
k
,
v
>>
// a <t>
9
{}
10
11
class
m
<
k
,
v
> :
c
<
k
,
v
>,
12
b
<
kv
<
k
,
v
>>
// b <t>
13
{
14
void
a
<
kv
<
k
,
v
>>.
x
() {}
// a<t>.x ()
15
}
16
17
class
X
18
{
19
static void
Main
()
20
{ }
21
}