blob: a5b79b82d5056770e55d3d11eaafffe825af24ca [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());
}
}