mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
8 lines
196 B
Java
8 lines
196 B
Java
class Temp {
|
|
public Temp(int <warning descr="Parameter can be converted to a local variable">p</warning>) {
|
|
for (int i = 0; i < 10; i++) {
|
|
p = i;
|
|
System.out.print(p);
|
|
}
|
|
}
|
|
} |