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