blob: 372ad8742899ba00605c46f35c65162bc86ceec2 [file] [log] [blame]
class C {
void foo() {
for(int i = 0; i < 10; i++){
<selection>if (i < 10){ continue;}</selection>
System.out.println("");
}
}
{
for(int i = 0; i < 10; i++){
if (i < 10){ continue;}
}
}
}