lean4-htt/tests/lean/run/empty_match.lean
2016-09-20 08:32:37 -07:00

8 lines
118 B
Text

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