// "Make 'a' implement 'b'" "true-preview" class a implements b { void f(b r) { r.g(this); } @Override public void g(b t) { } } interface b { void g(b t); }