mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 21:53:58 +07:00
Improves UnreachableCodeInspection GitOrigin-RevId: 87a98ad8c3c0ca544e86c9bb1c98267dc939a728
8 lines
185 B
Java
8 lines
185 B
Java
|
|
class Test {
|
|
public static void main(String[] args) {
|
|
Object o = "12";
|
|
Integer a = (Integer) o;
|
|
<warning descr="Unreachable code">System.out.println("1");</warning>
|
|
}
|
|
} |