lean4-htt/tests/lean/run/1093.lean
Leonardo de Moura 76eed7cb41 chore(library/init/meta): add to_unfold parameter to simplify, and remove redundant simp* tactics
Remark: the `to_unfold` has not been implemented yet.
2017-07-02 15:26:06 -07:00

8 lines
156 B
Text

open tactic nat
constant zadd (a : nat) : 0 + a = a
constant le.refl (a : nat) : a ≤ a
attribute [simp] zadd
example (a : nat) : 0 + a ≤ a :=
by simp