lean4-htt/tests/lean/run/empty_match.lean
2016-09-18 19:10:48 -07:00

9 lines
149 B
Text

set_option new_elaborator true
open nat
definition not_lt_zero (a : nat) : ¬ a < 0 :=
assume H : a < 0,
match H with
end
check _root_.not_lt_zero