blob: 0286b302ce429fa274c8f0173c5321b259bf1dfb [file] [log] [blame]
//13, 14, 13, 19
package p;
import java.util.List;
class A {
public static List<?> foo() {
return null;
}
void take(List<?> a) {
}
void bar() {
take(foo());
}
}