Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/bringVariableIntoScope/afterInit.java
Dmitry Avdeev 9896227871 test data fixed
2014-12-06 12:09:22 +03:00

11 lines
252 B
Java

// "Bring 'String con' into scope" "true"
class a {
private void ffff(String c) {
String con = null;
try {
con = null;
} finally {
ffff(con); // This method doesn't mind con == null.
}
}
}