lean2/tests/lean/whnf_tac.lean
2014-10-28 23:18:49 -07:00

11 lines
142 B
Text

import logic
definition id {A : Type} (a : A) := a
theorem tst (a : Prop) : a → id a :=
begin
intro Ha,
whnf,
state,
apply Ha
end