summaryrefslogtreecommitdiff
path: root/test/regress/regress1/strings/tolower-find.smt2
blob: ff27a285a6ab24c33eb3f1d6954665d0aad46773 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
(set-logic ALL_SUPPORTED)
(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