lean4-htt/tests/lean/elab2.lean
2016-07-29 10:36:14 -07:00

15 lines
291 B
Text

definition foo {A B : Type} [has_add A] (a : A) (b : B) : A :=
a
-- set_option trace.elaborator true
-- set_option trace.elaborator_detail true
set_option pp.all true
#elab foo 0 1
definition bla {A B : Type} (a₁ a₂ : A) (b : B) : A :=
a₁
#elab bla nat.zero tt 1
#elab bla 0 0 tt