mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-03 21:21:37 +07:00
8 lines
162 B
Java
8 lines
162 B
Java
// "Extract side effects as an 'if' statement" "true-preview"
|
|
class Z {
|
|
|
|
void z() {
|
|
int i = 0;
|
|
for(int j=0;j<100;j++) (<caret>i < 100) ? i++ : i--
|
|
}
|
|
} |