lean4-htt/tests/lean/sec_param_pp.lean
2017-05-25 18:24:16 -07:00

20 lines
281 B
Text

section
parameters {A : Type*} (a : A)
variable f : A → A → A
definition id2 : A := a
#check id2
definition pr (b : A) : A := f a b
#check pr f id2
set_option pp.universes true
#check pr f id2
definition pr2 (B : Type*) (b : B) : A := a
#check pr2 nat 10
end