summaryrefslogtreecommitdiff
path: root/test/regress/regress0/strings/str003.smt2
blob: 0ced7f447fc66bc83195ae9f8a94ccd37c0264ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(set-logic QF_S)
(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 (= "ab" (str.++ "a" xx)))
(assert (not (= xx yy)))
(assert (= "b" yy))

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