blob: 6a8ce4f135ce7841954a7fe358243a3fef9e8a53 [file] [log] [blame]
class C {
interface B<T> { }
static class E1 extends Exception implements B<Integer> { }
static class E2 extends Exception implements B<Long> { }
void m() {
try { }
catch (E1 | E2 ex) {
<caret>ex;
}
}
}