summaryrefslogtreecommitdiff
path: root/test/regress/regress0/strings/str007.smt2
blob: 0ca2ec4c386549601bf19748a54812f091511cfd (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