blob: 16413844c875f60067a27bb4096d4b0f5bcf6bcd [file] [log] [blame]
package test0065;
import java.util.List;
public class X<T, U extends List<?>> {
Object foo() {
return new X<String, List<?>>();
}
public void bar(List<? extends X<?, ?>> c) {
}
}