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

10 lines
181 B
Java

// "Bring 'int i' into scope" "true"
class a {
void foo () {
try {
int i = 0;
} catch (Exception e) {
int j = <caret>i;
}
}
}