Files
openide/java/java-tests/testData/inspection/defUse/TryThrowFinally.java
T

13 lines
308 B
Java

class C {
int f(boolean b) {
int i = <warning descr="Variable 'i' initializer '0' is redundant">0</warning>;
try {
<warning descr="The value 1 assigned to 'i' is never used">i</warning> = 1;
if (b) throw new RuntimeException();
}
finally {
i = 2;
}
return i;
}
}