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

11 lines
213 B
Java

class Test {
void test(int x) {
int y;
try {
y = x;
}
catch (NumberFormatException nfe) <warning descr="Unreachable code">{
throw new IllegalArgumentException();
}</warning>
}
}