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/quantifiers/selector-trigger.smt214
2 files changed, 15 insertions, 0 deletions
diff --git a/test/regress/CMakeLists.txt b/test/regress/CMakeLists.txt
index a5adf4d9c..b32e0799d 100644
--- a/test/regress/CMakeLists.txt
+++ b/test/regress/CMakeLists.txt
@@ -870,6 +870,7 @@ set(regress_0_tests
regress0/quantifiers/qcf-rel-dom-opt.smt2
regress0/quantifiers/quant-model-simplification.smt2
regress0/quantifiers/rew-to-scala.smt2
+ regress0/quantifiers/selector-trigger.smt2
regress0/quantifiers/simp-len.smt2
regress0/quantifiers/simp-typ-test.smt2
regress0/quantifiers/sygus-inst-nia-psyco-060.smt2
diff --git a/test/regress/regress0/quantifiers/selector-trigger.smt2 b/test/regress/regress0/quantifiers/selector-trigger.smt2
new file mode 100644
index 000000000..4e5cf0ecf
--- /dev/null
+++ b/test/regress/regress0/quantifiers/selector-trigger.smt2
@@ -0,0 +1,14 @@
+(set-logic ALL)
+(set-info :status unsat)
+(declare-datatypes ((T 0)) (
+ ((Z) (Y (y Int)))))
+
+(declare-fun b () T)
+(declare-fun a () Int)
+
+(declare-fun P (Int) Bool)
+(assert (P (y b)))
+
+(assert (forall ((x T)) (not (P (y x)))))
+
+(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback