// "Fix method 'foo' parameters with bounded wildcards" "true-preview" import java.util.List; interface Xo { void foo(List s); } public class ErrWarn implements Xo { public void foo(List s) { } } class D extends ErrWarn { @Override public void foo(List s) { super.foo(s); } }