Files
Tagir Valeevandintellij-monorepo-bot d01d523de1 [java-inspections] Unreachable code inspection (IDEA-342966)
GitOrigin-RevId: 4bcbf2d43bddca5ded941c2b1497715ff977ca0b
2024-01-19 11:20:26 +00:00

10 lines
171 B
Java

class Test {
int test(int x) {
if (x < 0) {
System.exit(0);
throw new AssertionError("unreachable");
}
System.out.println(x);
return 5;
}
}