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