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