Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/addCatchBlock/before3.java
2014-12-06 11:49:04 +03:00

15 lines
223 B
Java

// "Add 'catch' clause(s)" "true"
class a {
void g() throws Exception {
}
// initializer
{
try {
// comment before
<caret>g();
// comment after
}
}
}