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