interface a { void x (); } interface b : a {} class kv {} // type t interface c : b >, // b a > // a {} class m : c , b > // b { void a >.x () {} // a.x () } class X { public static void Main () { } }