mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-17 11:40:50 +07:00
this improves dfa performance and fixes cases when a single global != relation would prevent states from merging
14 lines
292 B
Java
14 lines
292 B
Java
class Some {
|
|
public static void main(int i) {
|
|
if (i != 0) {
|
|
if (i == 1 || i == 2 || i == 3) {
|
|
System.out.println("hello");
|
|
}
|
|
if (<warning descr="Condition 'i == 0' is always 'false'">i == 0</warning>) {
|
|
System.out.println("wat?");
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|