blob: bd4017fe230a2f22142a729b7517969e0b7b5b97 [file] [log] [blame]
class C {
static class E1 extends Exception { }
static class E2 extends Exception { }
abstract void f() throws E1, E2;
void m() throws E1, E2 {
f();
}
}