// "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) { } }