// "Remove unreachable branches" "true-preview" class Test { int test(Number n) { n = 1; System.out.println(switch (n) { case Long l -> l.intValue(); case Object i -> (int)i; } + 10); int i = 5; System.out.println(i); } }