lean4-htt/tests/lean/run/rw_set3.lean
Daniel Selsam 4f8db64e23 refactor(simplifier): many fixes, extensions, and tests
fix(simplifier): missing simp rule in prop simplifier
fix(library/unfold_macros): do not look for untrusted macros when using sufficient trust level
2016-08-19 14:57:03 -07:00

14 lines
214 B
Text

open tactic nat
constant f : nat → nat
constant g : nat → nat
axiom foo : ∀ x, f x = 1
axiom bla : ∀ x, f x = 2
attribute foo [simp]
attribute bla [simp]
print [simp] simp
example : f 5 = 2 := by simp