Files
Tagir Valeevandintellij-monorepo-bot e11c6c640c [java-dfa] IDEA-277611 Fix tests
GitOrigin-RevId: 16384eabf8feec58e07fee2ccacba379842a4018
2021-09-08 14:55:09 +00:00

15 lines
296 B
Java

/*
Value is always false (E.A == E.B; line#11)
Values cannot be equal because E.A.ordinal != E.B.ordinal
Left operand is 0 (E.A; line#11)
and right operand is 1 (E.B; line#11)
*/
class Test {
enum E {A, B, C}
void test() {
if (<selection>E.A == E.B</selection>) {
}
}
}