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

9 lines
227 B
Java

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