blob: 28b339c05b4c67bc7e285c6c4e8fa8b4b60bb7ff [file] [log] [blame]
// "Add Catch Clause(s)" "true"
class Test {
static class E1 extends Exception { }
static class E2 extends Exception { }
static class MyResource implements AutoCloseable {
public void doSomething() throws E1 { }
public void close() throws E2 { }
}
void m() {
try (<caret>MyResource r = new MyResource()) {
r.doSomething();
} catch (E1 ignore) {
}
}
}