lean4-htt/old_tests/tests/lean/run/empty_match.lean
2018-04-10 12:56:55 -07: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