lean4-htt/tests/lean/run/1608.lean
Leonardo de Moura 1ee1e01f8c feat(library/tactic/smt/congruence_closure): add builtin support for (@ne A a b)
This is needed when using cc in the standard tactic monad.

closes #1608
2017-05-26 17:06:22 -07:00

8 lines
216 B
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

example {α : Type} {a b : α} (h : ¬ (a = b)) : b ≠ a :=
by cc
example {α : Type} {a b : α} (h : ¬ (a = b)) : ¬ (b = a) :=
by cc
example {α : Type} {a b : α} (h : ¬ (a = b)) : b ≠ a :=
begin [smt] end