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