blob: 87ab38b6deb364945f8e327740d9fd09846dac8e [file] [log] [blame]
// "Add Catch Clause(s)" "true"
class a {
void g() throws Exception {
}
// initializer
{
try {
// comment before
g();
// comment after
} catch (Exception e) {
<caret><selection>e.printStackTrace();</selection>
}
}
}