// "Make 'a' implement 'b'" "true-preview" interface b { void f(T t); } class a implements b { @Override public void f(Integer integer) { } } class X { void h(b i) { } void g() { h(new a()); } }