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

14 lines
241 B
Java

// "Bring 'int i' into scope" "true"
class a {
void foo (int y) {
int i = 0;
while (y != 0) {
{
{
i = 0;
}
}
}
int j = i;
}
}