lean4-htt/tests/lean/run/issue7383.lean
Yaël Dillies feca9e8103
fix: allow trailing comma in the arg list of simp?, dsimp?, simpa, etc (#9804)
This PR allows trailing comma in the argument list of `simp?`, `dsimp?`,
`simpa`, etc... Previously, it was only allowed in the non `?` variants
of `simp`, `dsimp`, `simp_all`.

Closes #7383.
2025-08-09 16:37:30 +00:00

9 lines
355 B
Text

example : True := by dsimp? [trivial,]
example : True := by dsimp? only [trivial,]
example : True := by simp? [trivial,]
example : True := by simp? only [trivial,]
example : True := by simpa [trivial,]
example : True := by simpa only [trivial,]
example : True := by simpa [trivial,] using trivial
example : True := by simpa only [trivial,] using trivial