mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-12 04:36:59 +07:00
17 lines
225 B
Java
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);
|
|
}
|
|
}
|
|
} |