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