lean4-htt/tests/lean/run/grind_smul_issue.lean
Leonardo de Moura 6683d1eb91
chore: add module keyword to grind tests (#10036)
This PR also fixes missing `@[expose]` in grind support definitions.
2025-08-21 22:02:08 +00:00

15 lines
302 B
Text

module
example (x : BitVec 2) : x - 2 • x + x = 0 := by
grind
example (x : BitVec 2) : x + (-2) • x + x = 0 := by
grind
example (x : Fin 7) : x + (-2) • x + x = 0 := by
grind
example (x : Int) : x + (-2) • x + x = 0 := by
grind
example (x : Int) : x - 2 • x + x = 0 := by
grind