blob: cf16e0b4b79408ce0affe482b563a65e96eb9eb4 [file] [log] [blame]
class C {
static class E1 extends Exception { }
static class E2 extends Exception { }
void m() {
try { }
catch (E1 | E2 ex) {
final Exception e = ex;
}
}
}