summaryrefslogtreecommitdiff
path: root/test/regress/regress1/strings/replaceall-replace.smt2
blob: 5f62ff4d5546ebd2448fbfa06aed71b15c4aeb3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
(set-info :smt-lib-version 2.6)
(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.replace_all x y z))))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback