12 lines
157 B
Text
12 lines
157 B
Text
|
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
|