mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-27 01:42:17 +07:00
GitOrigin-RevId: 12db0098047932e92ac468072095492cb558adea
12 lines
233 B
Java
12 lines
233 B
Java
class C {
|
|
int f(boolean b) {
|
|
int i;
|
|
try {
|
|
<warning descr="The value '0' assigned to 'i' is never used">i</warning> = 0;
|
|
} finally {
|
|
if (b) throw new RuntimeException();
|
|
i = 1;
|
|
}
|
|
return i;
|
|
}
|
|
} |