summaryrefslogtreecommitdiff
path: root/test/regress/regress0/quantifiers/cegqi-par-dt-simple.smt2
blob: 1b72d3ba854693b73db444f57ffdccd474887aca (plain)
1
2
3
4
5
6
7
; EXPECT: unsat
(set-logic ALL)
(declare-datatype List (par (T) ((nil) (cons (head T) (tail (List T))))))

(declare-const x (List Int))
(assert (not (exists ((y (List Int))) (= x (tail y)))))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback