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