mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
11 lines
177 B
Java
11 lines
177 B
Java
// LocalsOrMyInstanceFieldsControlFlowPolicy
|
|
|
|
public class a {
|
|
boolean c;
|
|
void f(int i) throws Exception {<caret>
|
|
do {
|
|
c=!c;
|
|
} while (!c);
|
|
|
|
}
|
|
} |