summaryrefslogtreecommitdiff
path: root/test/regress/regress0/strings/str007.smt2
blob: a7173701a19079b8698c413320b0c202f0f317c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
(set-logic QF_S)
(set-info :status unsat)

(declare-fun x () String)
(declare-fun y () String)


(assert (or (= x y) (= x y)))

(assert (= (str.++ x "ba") (str.++ "ab" x)))
(assert (= (str.++ y "ab") (str.++ "ab" y)))

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