lean4-htt/tests/lean/elab7.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

10 lines
163 B
Text

set_option pp.all true
set_option pp.purify_metavars false
check λ x : nat, x + 1
check λ x y : nat, x + y
check λ x y, x + y + 1
check λ x, (x + 1) :: []