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