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

11 lines
182 B
Java

// "Bring 'int i' into scope" "true"
class a {
public void foo() {
int i;
if (true) {
i = 0;
} else {
int j = i;
}
}
}