lean2/tests/lean/run/constr_tac3.lean

8 lines
93 B
Text
Raw Normal View History

open nat
example (n m : ) (H : n < m) : n < succ m :=
begin
constructor,
exact H
end