Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/addCatchBlock/after3.java
2013-05-06 20:55:21 +02:00

17 lines
309 B
Java

// "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>
}
}
}