(set-logic ALL_SUPPORTED) (set-info :status unsat) (declare-fun x () Int) (declare-fun y () Int) (declare-fun z () Int) (assert (= x y)) (declare-fun a () (Set Int)) (declare-fun b () (Set Int)) (assert (not (in x a))) (assert (in y (union a b))) (assert (= x z)) (assert (not (in z a))) (assert (= a b)) (check-sat)