Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/addCatchBlock/before1.java
2010-06-25 12:46:40 +04:00

12 lines
179 B
Java

// "Add Catch Clause(s)" "true"
class a {
void g() throws Exception {
}
void f() {
try {
<caret>g();
} catch (Error e) {
}
}
}