mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
10 lines
218 B
Java
10 lines
218 B
Java
// "Remove unreachable branches" "true-preview"
|
|
class Test {
|
|
void test(Number n) {
|
|
n = 1;
|
|
Integer i1 = (Integer) n;
|
|
int result = i1 + 10;
|
|
int i = 5;
|
|
System.out.println(result + i);
|
|
}
|
|
} |