aboutsummaryrefslogtreecommitdiffstats
path: root/unit-tests/uf6.smt2
blob: 89214224f24373780baf728121fdc75f0882bc7f (plain)
1
2
3
4
5
6
7
8
9
10
(set-logic QF_UF)
(declare-sort U 0)
(declare-fun x () U)
(declare-fun y () U)
(declare-fun z () U)
(declare-fun f (U U) U)
(assert (= x y))
(assert (not (= (f z x) (f z y))))
(check-sat)
(exit)