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