lean4-htt/tests/lean/run/grind_big_poly.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

10 lines
364 B
Text

module
/--
trace: [grind.issues] maximum recursion depth has been reached
use `set_option maxRecDepth <num>` to increase limit
use `set_option diagnostics true` to get diagnostic information
-/
#guard_msgs (drop error, trace) in
set_option trace.grind.issues true in
example (x y z w : Int) : (x + y + z + w)^5000 - 1 = 0 := by
grind -- should not crash