mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-23 05:07:31 +07:00
9 lines
296 B
Java
9 lines
296 B
Java
// IDEA-193167
|
|
class Test {
|
|
void test() {
|
|
boolean b1 = true;
|
|
boolean b2 = true;
|
|
boolean b3 = false;
|
|
System.out.println(<warning descr="Condition 'b1 == b2 == b3' is always 'false'"><warning descr="Condition 'b1 == b2' is always 'true'">b1 == b2</warning> == b3</warning>);
|
|
}
|
|
} |