blob: c47ebd729f6f101576cca9f560e636df3497ad44 [file] [log] [blame]
class C {
static class E1 extends Exception { }
static class E2 extends Exception { }
abstract void f() throws E1, E2;
void m() {
try {
f();
} <caret>catch (E1 ignore) {
} catch (E2 ignore) {
}
}
}