blob: 05217e6b56cfeceb607a9af60ec417d0bed38ce4 [file] [log] [blame]
package p;
import java.util.List;
public class A {
public List<?> foo() {
return null;
}
void take(List<?> a) {
}
void bar() {
List<?> foo= foo();
take(foo);
}
}