mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-29 08:20:55 +07:00
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--
|
|
}
|
|
} |