lean4-htt/tests/lean/run/4585.lean
Leonardo de Moura b721c0f540
test: add test for issue #4585 (#6384)
This issue has been fixed by #6123

closes #4585
2024-12-14 22:12:00 +00:00

13 lines
273 B
Text

example (x y : Nat) : let a := (x,y); a.2 = 0 := by
intro a
fail_if_success simp
guard_target =ₛ a.2 = 0
simp +zetaDelta
guard_target =ₛ y = 0
sorry
example (x y : Nat) : let a := (x,y); a.2 = 0 := by
intro a
simp [a]
guard_target =ₛ y = 0
sorry