mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-19 14:09:12 +07:00
18 lines
393 B
Java
18 lines
393 B
Java
// LocalsOrMyInstanceFieldsControlFlowPolicy
|
|
import java.io.IOException;
|
|
import java.io.OutputStream;
|
|
public class Outer {
|
|
void f(OutputStream writer) { <caret>
|
|
try {
|
|
try {
|
|
throw new IOException();
|
|
} finally {
|
|
writer.close();
|
|
}
|
|
}
|
|
catch (IOException e) {
|
|
e.hashCode();
|
|
}
|
|
}
|
|
}
|