1 interface a
<t
> { void x (); }
3 interface b
<t
> : a
<t
> {}
5 class kv
<k
,v
> {} // type t
7 interface c
<k
,v
>: b
<kv
<k
,v
>>, // b <t>
11 class m
<k
,v
> : c
<k
,v
>,
14 void a
<kv
<k
,v
>>.x () {} // a<t>.x ()
19 public static void Main ()