lean4-htt/tests/lean/run/grind_9467.lean
Leonardo de Moura 64219ac91e
fix: assertNatCast in grind (#9476)
This PR fixes the bridge between `Nat` and `Int` in `grind cutsat`.

Closes #9467
2025-07-22 21:59:38 +00:00

8 lines
248 B
Text

example (x y : Nat) : (x : Int) - (y : Int) = 0 → x = y := by
grind
example (x y : Nat) : (x : Int) - (y : Int) ≤ 0 → (x : Int) - (y : Int) ≥ 0 → x = y := by
grind
example (x y : Nat) : (x : Int) = (y : Int) → x = y := by
grind