mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-04 13:55:00 +07:00
GitOrigin-RevId: 8fe8b5b70f19cf1cb3b268edbacc07abcb155f3d
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--
|
|
}
|
|
} |