summaryrefslogtreecommitdiff
path: root/test/regress/regress0/fmf/cons-sets-bounds.smt2
diff options
context:
space:
mode:
Diffstat (limited to 'test/regress/regress0/fmf/cons-sets-bounds.smt2')
-rw-r--r--test/regress/regress0/fmf/cons-sets-bounds.smt24
1 files changed, 2 insertions, 2 deletions
diff --git a/test/regress/regress0/fmf/cons-sets-bounds.smt2 b/test/regress/regress0/fmf/cons-sets-bounds.smt2
index db9788a61..5e3c2952b 100644
--- a/test/regress/regress0/fmf/cons-sets-bounds.smt2
+++ b/test/regress/regress0/fmf/cons-sets-bounds.smt2
@@ -1,7 +1,7 @@
; COMMAND-LINE: --fmf-bound
; EXPECT: sat
(set-logic ALL)
-(declare-datatypes () ((list (cons (head Int) (tail list)) (nil))))
+(declare-datatypes ((list 0)) (((cons (head Int) (tail list)) (nil))))
(declare-fun P (Int) Bool)
(declare-fun S () (Set list))
@@ -14,7 +14,7 @@
; should construct instantiation involving selectors for l
(declare-fun l () list)
-(assert (is-cons l))
+(assert ((_ is cons) l))
(assert (member l S))
; should not contribute to instantiations
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback