mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-19 14:09:12 +07:00
13 lines
251 B
Java
13 lines
251 B
Java
// LocalsOrMyInstanceFieldsControlFlowPolicy
|
|
|
|
public class a {
|
|
boolean c;
|
|
void f(int i) throws Exception {<caret>
|
|
for (int i=0; i<100; i++) {
|
|
if (i==0) break;
|
|
if (i==1) continue;
|
|
c = !c;
|
|
}
|
|
|
|
}
|
|
} |