lean4-htt/tests/lean/run/issue332.lean
2016-06-10 18:29:41 -07:00

12 lines
155 B
Text

exit
import logic.eq
variable {a : Type}
definition foo {A : Type} : A → A :=
begin
intro a, exact a
end
check @foo
example : foo 10 = (10:num) :=
rfl