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