mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 00:50:53 +07:00
7 lines
145 B
Java
7 lines
145 B
Java
// "Move up into 'if' statement branches" "true-preview"
|
|
class X {
|
|
void test(int x) {
|
|
if (x > 0) {}
|
|
<caret>System.out.println(x);
|
|
}
|
|
} |