mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-22 16:19:35 +07:00
6e8742ed2a
GitOrigin-RevId: 3d20d29f9b7e2f0a3a989991af2788572449b0de
12 lines
234 B
Java
12 lines
234 B
Java
// "Remove local variable 'problematic'" "true"
|
|
class C {
|
|
Object foo() {return null;}
|
|
|
|
void case01() {
|
|
int i;
|
|
for(i = 10, foo(); (--i) > 0; ) {
|
|
System.out.println("index = " + i);
|
|
}
|
|
}
|
|
}
|