summaryrefslogtreecommitdiff
path: root/test/regress
diff options
context:
space:
mode:
Diffstat (limited to 'test/regress')
-rw-r--r--test/regress/CMakeLists.txt1
-rw-r--r--test/regress/regress0/sygus/issue3624.sy8
2 files changed, 9 insertions, 0 deletions
diff --git a/test/regress/CMakeLists.txt b/test/regress/CMakeLists.txt
index a04619342..ed9ddda1b 100644
--- a/test/regress/CMakeLists.txt
+++ b/test/regress/CMakeLists.txt
@@ -935,6 +935,7 @@ set(regress_0_tests
regress0/sygus/hd-05-d1-prog-nogrammar.sy
regress0/sygus/inv-different-var-order.sy
regress0/sygus/issue3356-syg-inf-usort.smt2
+ regress0/sygus/issue3624.sy
regress0/sygus/let-ringer.sy
regress0/sygus/let-simp.sy
regress0/sygus/no-logic.sy
diff --git a/test/regress/regress0/sygus/issue3624.sy b/test/regress/regress0/sygus/issue3624.sy
new file mode 100644
index 000000000..cc677bb9c
--- /dev/null
+++ b/test/regress/regress0/sygus/issue3624.sy
@@ -0,0 +1,8 @@
+; EXPECT: unsat
+; COMMAND-LINE: --sygus-out=status
+(set-logic ALL)
+(declare-var A Bool)
+(declare-var B (Array Int Bool))
+(synth-fun secure-sync ((A Bool) (B (Array Int Bool))) Bool)
+(constraint (secure-sync A B))
+(check-synth)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback