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

13 lines
235 B
Java

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