lean4-htt/tests/lean/run/grind_heq_proof_issue.lean
Leonardo de Moura a08379ce2e
fix: proof generation for grind tactic (#6502)
This PR fixes a bug in the proof assembly procedure utilized by the
`grind` tactic.
2025-01-02 04:42:31 +00:00

7 lines
202 B
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

def f (a : α) := a
example (a b : α) (x y : β) : HEq a x → x = y → HEq y b → f a = f b := by
grind
example (a b : α) (x y : β) : x = y → HEq a x → HEq y b → f a = f b := by
grind