blob: 4b76f3f463be12eaf3fd735f1bd8e3807859bdad [file] [log] [blame]
// "Add Catch Clause(s)" "true"
class a {
void g() throws Exception {
}
void f() {
try {
<caret>g();
} catch (Error e) {
}
}
}