lean4-htt/tests/lean/run/congr_lemma1.lean
2016-07-29 13:03:23 -07:00

12 lines
223 B
Text

open tactic
set_option pp.binder_types true
example : true :=
by do
ite ← mk_const `ite,
l ← mk_congr_simp ite,
trace (congr_lemma.type l),
l ← mk_hcongr ite,
trace (congr_lemma.type l),
constructor