mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-28 15:20:54 +07:00
14 lines
214 B
Java
14 lines
214 B
Java
// "Extract side effects as an 'if' statement" "true-preview"
|
|
class Z {
|
|
|
|
void z() {
|
|
int i = 0;
|
|
if (true) {
|
|
if ((i < 100)) {
|
|
i++;
|
|
} else {
|
|
i--;
|
|
}
|
|
}
|
|
}
|
|
} |