IDEA-146946

This commit is contained in:
Alexey Kudravtsev
2015-11-12 17:04:34 +03:00
parent b21affbb36
commit 89b362ef96
4 changed files with 42 additions and 33 deletions
@@ -0,0 +1,17 @@
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);
}
}
}