Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/modifier/before33.java

12 lines
180 B
Java

// "Make 'e' not final" "false"
class C {
static {
try {
throw new Exception();
}
catch (RuntimeException | IOException e) {
<caret>e = null;
}
}
}