summaryrefslogtreecommitdiff
path: root/test/regress/regress0/strings/model-code-point.smt2
diff options
context:
space:
mode:
Diffstat (limited to 'test/regress/regress0/strings/model-code-point.smt2')
-rw-r--r--test/regress/regress0/strings/model-code-point.smt213
1 files changed, 13 insertions, 0 deletions
diff --git a/test/regress/regress0/strings/model-code-point.smt2 b/test/regress/regress0/strings/model-code-point.smt2
new file mode 100644
index 000000000..1200ae704
--- /dev/null
+++ b/test/regress/regress0/strings/model-code-point.smt2
@@ -0,0 +1,13 @@
+; COMMAND-LINE: --lang=smt2.6.1 --produce-models
+; EXPECT: sat
+; EXPECT: ((x "\u{a}"))
+; EXPECT: ((y "\u{7f}"))
+(set-logic ALL)
+(set-info :status sat)
+(declare-fun x () String)
+(declare-fun y () String)
+(assert (= (str.to_code x) 10))
+(assert (= (str.to_code y) 127))
+(check-sat)
+(get-value (x))
+(get-value (y))
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback