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