lean4-htt/tests/lean/elab11.lean
Leonardo de Moura 8993d0738a feat(frontends/lean): remove #elab command
The check command is now using the new elaborator.
2016-08-02 15:05:24 -07:00

16 lines
208 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)