blob: 6fe33c22022aa7d04199a0feea42252b1216a70b [file] [log] [blame]
public class Catch {
void defaultUnionType() throws Throwable {
try {
throw new Throwable();
} catch (IndexOutOfBoundsException | NullPointerException ex) {
}
}
void defaultDeclaredType() throws Throwable {
try {
throw new Throwable();
} catch (RuntimeException ex) {
}
}
}