summaryrefslogtreecommitdiff
path: root/test/regress/regress0/strings/tolower-simple.smt2
diff options
context:
space:
mode:
Diffstat (limited to 'test/regress/regress0/strings/tolower-simple.smt2')
-rw-r--r--test/regress/regress0/strings/tolower-simple.smt211
1 files changed, 11 insertions, 0 deletions
diff --git a/test/regress/regress0/strings/tolower-simple.smt2 b/test/regress/regress0/strings/tolower-simple.smt2
new file mode 100644
index 000000000..9d2273f8d
--- /dev/null
+++ b/test/regress/regress0/strings/tolower-simple.smt2
@@ -0,0 +1,11 @@
+(set-logic ALL_SUPPORTED)
+(set-option :strings-exp true)
+(set-info :status sat)
+(declare-const x String)
+(declare-const y String)
+(declare-const z String)
+
+(assert (= (str.tolower "aBCDef") x))
+(assert (= x (str.++ y "c" z)))
+
+(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback