mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-28 12:52:51 +07:00
9 lines
167 B
Java
9 lines
167 B
Java
// "Convert to local variable" "true"
|
|
class Temp {
|
|
public Temp(int <caret>p) {
|
|
for (int i = 0; i < 10; i++) {
|
|
p = i;
|
|
System.out.print(p);
|
|
}
|
|
}
|
|
} |