mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 05:20:30 +07:00
9 lines
219 B
Java
9 lines
219 B
Java
class Test {
|
|
private static final int CONST = 3/2 + 0*1;
|
|
public void foo() {
|
|
int i = 0;
|
|
int j = 2 + (CONST) - 6/2;
|
|
if (<warning descr="Condition 'i == j' is always 'true'">i == j</warning>) {
|
|
}
|
|
}
|
|
} |