mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 08:09:39 +07:00
12 lines
225 B
Java
12 lines
225 B
Java
// "Remove variable 'problematic'" "true"
|
|
class C {
|
|
Object foo() {return null;}
|
|
|
|
void case01() {
|
|
int i = 10;
|
|
for(foo(); (--i) > 0; ) {
|
|
System.out.println("index = " + i);
|
|
}
|
|
}
|
|
}
|