summaryrefslogtreecommitdiff
path: root/test/regress/regress0/strings/str001.smt2
blob: 8ae10edbee15c7427f291a89847cc0db39a6d3ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(set-logic ALL_SUPPORTED)
(set-info :status unsat)

(declare-fun xx () String)
(declare-fun yy () String)
(declare-fun zz () String)
(declare-fun ww () String)
(declare-fun pp () String)
(declare-fun qq () String)

(assert (= (str.++ xx yy zz) (str.++ ww qq)))
(assert (= ww (str.++ xx pp)))
(assert (= yy pp))
(assert (not (= zz qq)))

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