lean2/tests/lean/run/tactic10.lean
Leonardo de Moura 8e6324185a fix(tests/lean): adjust tests to new library structure
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2014-08-01 09:37:23 -07:00

9 lines
203 B
Text

import standard
using tactic
theorem tst (a b : Prop) (H : a ↔ b) : b ↔ a
:= by apply iff_intro;
apply (assume Hb, iff_elim_right H Hb);
apply (assume Ha, iff_elim_left H Ha)
check tst