lean4-htt/tests/lean/elab11.lean
2017-03-09 18:41:19 -08:00

16 lines
212 B
Text

constant boo.f : nat → bool
constant bla.f : nat → nat
open boo bla
#check f 1
set_option pp.full_names true
#check (f 1 : nat)
#check (f 1 : bool)
set_option pp.full_names false
#check (f 1 : string)