mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
9 lines
153 B
Java
9 lines
153 B
Java
// LocalsOrMyInstanceFieldsControlFlowPolicy
|
|
public class a {
|
|
void f(int i) {<caret>
|
|
while (i==0) {
|
|
i = 5;
|
|
if (i==3) break;
|
|
}
|
|
}
|
|
} |