summaryrefslogtreecommitdiff
path: root/test/regress/regress1/strings/tolower-find.smt2
blob: 80c797b3ebd243c323422210943da9971fa0379a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
(set-logic ALL)
(set-option :strings-exp true)
(set-info :status sat)
(declare-const x String)
(declare-const y String)

(assert (= (str.tolower x) "abcde"))
(assert (= (str.tolower y) "abcde"))
(assert (not (= x "abcde")))
(assert (not (= y "abcde")))
(assert (not (= x y)))

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