summaryrefslogtreecommitdiff
path: root/test/regress/regress0/sep/simple-080420-const-sets.smt2
diff options
context:
space:
mode:
Diffstat (limited to 'test/regress/regress0/sep/simple-080420-const-sets.smt2')
-rw-r--r--test/regress/regress0/sep/simple-080420-const-sets.smt214
1 files changed, 14 insertions, 0 deletions
diff --git a/test/regress/regress0/sep/simple-080420-const-sets.smt2 b/test/regress/regress0/sep/simple-080420-const-sets.smt2
new file mode 100644
index 000000000..1d85fb133
--- /dev/null
+++ b/test/regress/regress0/sep/simple-080420-const-sets.smt2
@@ -0,0 +1,14 @@
+; COMMAND-LINE: --no-check-models
+; EXPECT: sat
+(set-logic QF_ALL_SUPPORTED)
+(set-option :produce-models true)
+(set-info :status sat)
+(declare-fun x () Int)
+
+; works
+;(assert (sep (pto 1 2) (pto 5 6) (pto x 8)))
+
+; didn't work due to sets rewriter
+(assert (sep (pto 1 2) (pto 5 6) (pto 7 8)))
+
+(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback