aboutsummaryrefslogtreecommitdiffstats
path: root/src/lfsc/tests/uf6.smt2
blob: 2fa193297677113f3078b2eceee602b03ac0745d (plain)
1
2
3
4
5
6
7
8
9
10
11
(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)