blob: 5c7fc35a29f47a82cdc26ac81813090157bc03c6 [file] [log] [blame]
class C {
void foo() {
for(int i = 0; i < 10; i++){
if (newMethod(i)) continue;
System.out.println("");
}
}
private boolean newMethod(int i) {
if (i < 10){
return true;
}
return false;
}
{
for(int i = 0; i < 10; i++){
if (newMethod(i)) continue;
}
}
}