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