mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 02:15:59 +07:00
12 lines
293 B
Java
12 lines
293 B
Java
import java.util.List;
|
|
|
|
class Some {
|
|
|
|
public static void main(String[] args) {
|
|
boolean x = true, y = true, z = true, t = true;
|
|
boolean r = <warning descr="Condition 'x ^ y ^ z ^ t' is always 'false'">x ^ y ^ z ^ t</warning>;
|
|
System.out.println("r: " + r);
|
|
}
|
|
|
|
}
|