lean2/tests/lean/whnf_tac.lean
2015-11-20 17:03:17 -08:00

11 lines
145 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