lean4-htt/tests/lean/run/empty_match.lean
2016-07-31 17:45:43 -07:00

8 lines
124 B
Text

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