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