summaryrefslogtreecommitdiff
path: root/test/regress/regress0/ho/def-fun-flatten.smt2
blob: 81af169a7d6689ce7d409752162e9b4929f7a195 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; EXPECT: unsat
(set-logic HO_ALL)
(set-info :status unsat)
(declare-fun f (Int Int) Int)
(define-fun g ((x Int)) (-> Int Int) (f x))

(declare-fun a () Int)
(declare-fun b () Int)

(assert (not (= (g a b) (f a b))))

(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback