mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 16:25:33 +07:00
GitOrigin-RevId: 16384eabf8feec58e07fee2ccacba379842a4018
15 lines
296 B
Java
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>) {
|
|
|
|
}
|
|
}
|
|
} |