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