blob: 4767db0268e9c34e77a212605ca065174982f7a8 [file] [log] [blame]
class C {
static class E1 extends Exception { }
static class E2 extends Exception { }
static class R implements AutoCloseable {
public static R open() throws E1 { return new R(); }
public void close() throws E2 { }
}
void m() throws E1 {
try (R r = R.open()) {
} <caret>catch (E2 ignore) { }
}
}