fix(library/init/data/nat/basic): issue reported by @kha

This commit is contained in:
Leonardo de Moura 2016-12-17 13:17:30 -08:00
parent d41c403442
commit 422d43cf47

View file

@ -17,8 +17,8 @@ inductive less_than (a : ) : → Prop
instance : has_le :=
⟨nat.less_than⟩
@[reducible] protected def le (n m : ) := n m
@[reducible] protected def lt (n m : ) := succ n ≤ m
@[reducible] protected def le (n m : ) := nat.less_than n m
@[reducible] protected def lt (n m : ) := nat.less_than (succ n) m
instance : has_lt :=
⟨nat.lt⟩