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.
9 lines
355 B
Text
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
|