Frontend support for the choice operator (#4175)
[cvc5.git] / test / regress / regress0 / logops.03.cvc
1 a, b, c: BOOLEAN;
2 % EXPECT: valid
3 QUERY (IF c THEN a ELSE b ENDIF) <=> ((c AND a) OR (NOT c AND b));