summaryrefslogtreecommitdiff
path: root/test/regress/regress0/strings/tolower-rrs.smt2
blob: 7b8b393cd878e7644936eb18f38a74fab4da272c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
; COMMAND-LINE: --strings-exp
; EXPECT: unsat
(set-info :smt-lib-version 2.5)
(set-logic ALL)
(set-info :status unsat)
(declare-fun x () String)
(declare-fun y () Int)

(assert (or 
(not (= (str.tolower (str.toupper (str.tolower x))) (str.tolower x)))
(not (= (str.tolower (str.++ x "A")) (str.++ (str.tolower x) "a")))
(not (= (str.tolower (int.to.str y)) (int.to.str y)))
))

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