summaryrefslogtreecommitdiff
path: root/test/regress/regress0/ho/def-fun-flatten.smt2
blob: af33098f54659c7fe2a88bea3e134ef698d03606 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
; COMMAND-LINE: --uf-ho
; EXPECT: unsat
(set-logic 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