8fe7465ade
that contains implicit arguments
12 lines
251 B
Text
12 lines
251 B
Text
import logic
|
|
|
|
set_option pp.notation false
|
|
|
|
inductive Functor :=
|
|
mk : (Π (A B : Type), A → B) → Functor
|
|
|
|
definition Functor.to_fun [coercion] (f : Functor) {A B : Type} : A → B :=
|
|
Functor.rec (λ f, f) f A B
|
|
|
|
variable f : Functor
|
|
check f 0 = 0
|