lean4-htt/tests/elab/grind_trace_term_params.lean
Garmelon 08eb78a5b2
chore: switch to new test/bench suite (#12590)
This PR sets up the new integrated test/bench suite. It then migrates
all benchmarks and some related tests to the new suite. There's also
some documentation and some linting.

For now, a lot of the old tests are left alone so this PR doesn't become
even larger than it already is. Eventually, all tests should be migrated
to the new suite though so there isn't a confusing mix of two systems.
2026-02-25 13:51:53 +00:00

15 lines
499 B
Text

/-!
# Test that `grind?` includes term parameters in its suggestion
When a user provides term arguments to `grind?`, they should be included
in the suggestion even if they are not tracked via E-matching.
-/
-- Test: Term argument should be included in suggestion
-- The term `show False by exact h` is passed as argument and should appear in output
/--
info: Try this:
[apply] grind only [show False by exact h]
-/
#guard_msgs in
example (h : False) : False := by grind? [show False by exact h]