lean2/tests/lean/run/issue332.lean

12 lines
157 B
Text
Raw Normal View History

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