Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/bringVariableIntoScope/before1.java
2010-06-25 12:46:40 +04: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;
}
}
}