mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-27 08:52:52 +07:00
GitOrigin-RevId: 12db0098047932e92ac468072095492cb558adea
14 lines
296 B
Java
14 lines
296 B
Java
class X {
|
|
void foo(int x) {
|
|
int y = y = x;
|
|
|
|
int z = 0;
|
|
System.out.println(z);
|
|
z = z = x;
|
|
System.out.println(z);
|
|
z = (z = x);
|
|
System.out.println(z);
|
|
z = <warning descr="The value 'x' assigned to 'y' is never used">y</warning> = x;
|
|
System.out.println(z);
|
|
}
|
|
} |