summaryrefslogtreecommitdiff
path: root/test/regress/regress1/strings/replaceall-replace.smt2
blob: 5bf5b5b167c3ed2f8f68096fb95925bfa79c4b9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
(set-info :smt-lib-version 2.5)
(set-logic ALL)
(set-info :status sat)
(set-option :strings-exp true)
(set-option :strings-fmf true)
(set-option :produce-models true)
(declare-fun x () String)
(declare-fun y () String)
(declare-fun z () String)
(assert (not (= x "")))
(assert (not (= y "")))
(assert (not (= (str.replace x y z) (str.replaceall x y z))))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback