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

14 lines
240 B
Java

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