lean4-htt/old_tests/tests/lean/sec_param_pp2.lean
2018-04-10 12:56:55 -07:00

17 lines
234 B
Text

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