lean4-htt/tests/lean/run/3501.lean
2024-02-26 20:49:24 +00:00

9 lines
242 B
Text

/-- info: Try this: simp only [Nat.reduceMul, a] -/
#guard_msgs in
example : True := by
let a := 10
have : a * 2 = 10 * 2 := by
simp [a]
have : a * 2 = 10 * 2 := by
simp? [a] -- should say simp only [Nat.reduceMul, a]
trivial