mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 14:38:30 +07:00
GitOrigin-RevId: 12db0098047932e92ac468072095492cb558adea
8 lines
181 B
Java
8 lines
181 B
Java
class Foo {
|
|
private void f() {
|
|
int x = 10;
|
|
int t = x;
|
|
<warning descr="The value '10' assigned to 'x' is never used">x</warning> += 10;
|
|
System.out.println(t);
|
|
}
|
|
} |