mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 01:43:57 +07:00
GitOrigin-RevId: 4bcbf2d43bddca5ded941c2b1497715ff977ca0b
11 lines
213 B
Java
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>
|
|
}
|
|
} |