summaryrefslogtreecommitdiff
path: root/test/regress/regress0/strings/replaceall-eval.smt2
blob: 924515901874c5dcc66688e26bac8377b25ce1da (plain)
1
2
3
4
5
6
7
8
9
10
(set-info :smt-lib-version 2.5)
(set-logic ALL)
(set-info :status sat)
(declare-fun x () String)
(declare-fun y () String)

(assert (= x (str.replaceall "AABAABBC" "B" "def")))
(assert (= y (str.replaceall "AABAABBC" "AB" "BA")))

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