blob: 90a54c34fdf9cf9e62061448d483c76f4817f325 [file] [log] [blame]
public class Npe {
Object foo(Object[] objs) {
boolean skip = true;
for (Object o : objs) {
if (o instanceof String) {
skip = false;
continue;
}
if (skip) {
continue;
}
bar();
}
return "";
}
void bar() {
}
}