summaryrefslogtreecommitdiff
path: root/test/regress/regress0/arrays/bool-array.smt2
diff options
context:
space:
mode:
Diffstat (limited to 'test/regress/regress0/arrays/bool-array.smt2')
-rw-r--r--test/regress/regress0/arrays/bool-array.smt213
1 files changed, 13 insertions, 0 deletions
diff --git a/test/regress/regress0/arrays/bool-array.smt2 b/test/regress/regress0/arrays/bool-array.smt2
new file mode 100644
index 000000000..f05d0266b
--- /dev/null
+++ b/test/regress/regress0/arrays/bool-array.smt2
@@ -0,0 +1,13 @@
+; COMMAND-LINE: --no-check-proofs --no-check-unsat-cores
+; EXPECT: unsat
+(set-logic QF_AX)
+(set-info :status unsat)
+
+(declare-fun a () (Array Bool Bool))
+(declare-fun b () (Array Bool Bool))
+
+(assert (not (= (select a (= a b)) (select a (not (= a b))))))
+(assert (= (select a true) (select a false)))
+
+(check-sat)
+
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback