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

8 lines
119 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