lean4-htt/tests/lean/run/congr_lemma1.lean
2017-01-20 20:35:18 -08:00

12 lines
235 B
Text

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