blob: 8e071879fdc0aaa8ebf8062d8f1d8446555b494a [file] [log] [blame]
import java.io.IOException;
import java.security.GeneralSecurityException;
abstract class Issue4381 {
public void t() {
int m = 0;
try {
f();
} catch (IllegalArgumentException | IOException e) {
} catch (GeneralSecurityException e) {
g(m);
}
}
abstract void g(int x);
abstract void f() throws IllegalArgumentException, IOException, GeneralSecurityException;
}