// "Make 'a' implement 'b'" "true" class a { void f(b r) { r.g(this); } } interface b { void g(b t); }