Files
Tagir Valeevandintellij-monorepo-bot 847e780060 [i18n] Java DFA (including TrackingRunner) i18n
GitOrigin-RevId: c4ec7e3f39956467e38ca0599afb1eb0aaefad2a
2020-08-07 08:24:37 +00:00

17 lines
563 B
Java

/*
Value is always false (a > 5 && b < 0 && b > a; line#15)
One of the following happens:
Operand #1 of and-chain is false (a > 5; line#15)
or operand #2 of and-chain is false (b < 0; line#15)
or operand #3 of and-chain is false (b > a; line#15)
Left operand is <= -1 (b; line#15)
Range is known from line #15 (b < 0; line#15)
and right operand is >= 6 (a; line#15)
Range is known from line #15 (a > 5; line#15)
*/
class Test {
void test(int a, int b) {
if(<selection>a > 5 && b < 0 && b > a</selection>) {}
}
}