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