summaryrefslogtreecommitdiff
path: root/test/regress/regress0/named-expr-use.smt2
blob: 3c520c3a57e3e1a6b1caa920a1bf69a9a296f4af (plain)
1
2
3
4
5
6
7
8
9
10
11
(set-logic QF_LIA)
(set-info :status unsat)
(declare-fun x () Int)
(declare-fun y () Int)

(assert (or (= x 5) (= x 7)))
(assert (or (! (= x 5) :named foo) (= x y)))

(assert (= foo (= x 7)))

(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback