mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 20:33:31 +07:00
GitOrigin-RevId: 8fe8b5b70f19cf1cb3b268edbacc07abcb155f3d
8 lines
149 B
Java
8 lines
149 B
Java
// "Extract side effects as an 'if' statement" "true-preview"
|
|
class Z {
|
|
|
|
void z() {
|
|
int i = 0;
|
|
if (true) (<caret>i < 100) ? i++ : i--
|
|
}
|
|
} |