GenericParameter.cs: override Module properly
[mcs.git] / tests / gtest-157.cs
blobf314b01af4a8ea47481aa43173be8fee758a2e5e
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>
8 a <kv<k,v>> // a <t>
9 {}
11 class m <k,v> : c <k,v>,
12 b <kv<k,v>> // b <t>
14 void a <kv <k,v>>.x () {} // a<t>.x ()
17 class X
19 static void Main ()
20 { }