blob: 5a6aa3b23e2b672839e7a1d03c5de208553f9510 [file] [log] [blame]
package p;
import java.util.ArrayList;
public class A {
public void foo() {
ArrayList<? super Integer> nl= new ArrayList<Integer>();
Object o= nl.get(0);
}
}