mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 11:36:59 +07:00
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);
|
|
}
|
|
} |