blob: a19b9d99bdd40a77fd2c8058f91c984f2d1d2fea [file] [log] [blame]
class Test {
String[] foo() {
return null;
}
boolean bar(String s) {
return false;
}
void foooooo() {
String[] modules = foo();
int i = 0;
while (i < modules.length && <selection>!bar(modules[i])</selection>) {
i++;
}
}
}