mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 20:45:15 +07:00
8 lines
179 B
Java
8 lines
179 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);
|
|
}
|
|
} |