Files
openide/java/java-tests/testData/codeInsight/slice/backward/TryCatchFinally.java
Alexey Kudravtsev 89b362ef96 IDEA-146946
2015-11-12 17:04:34 +03:00

17 lines
225 B
Java

package x;
class X {
void f(Throwable p) {
Throwable error = <flown1>null;
try {
f(p);
}
catch (Throwable <flown21>e) {
error = <flown2>e;
}
finally {
f(<caret>error);
}
}
}