lean4-htt/tests/lean/run/tactic10.lean
2016-06-10 18:29:41 -07:00

11 lines
206 B
Text

exit
import logic
theorem tst (a b : Prop) (H : a ↔ b) : b ↔ a
:= by apply iff.intro;
intro Hb;
apply (iff.elim_right H Hb);
intro Ha;
apply (iff.elim_left H Ha)
check tst