mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 11:36:16 +07:00
8 lines
216 B
Java
8 lines
216 B
Java
class C {
|
|
int f() {
|
|
int i = <warning descr="Variable 'i' initializer '0' is redundant">0</warning>;
|
|
<warning descr="The value 1 assigned to 'i' is never used">i</warning> = 1;
|
|
i = 2;
|
|
return i;
|
|
}
|
|
} |