mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 09:39:37 +07:00
10 lines
191 B
Java
10 lines
191 B
Java
// "Move up into 'if' statement branches" "true-preview"
|
|
class X {
|
|
void test(int x) {
|
|
if (x > 0) {
|
|
System.out.println(x);
|
|
} else {
|
|
System.out.println(x);
|
|
}
|
|
}
|
|
} |