blob: 9e53d69d93cc444c5bf34b2fd8218db7ce916de7 [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) {
}
}