Skip to content
Snippets Groups Projects
Commit 6ff1c18a authored by Robbert Krebbers's avatar Robbert Krebbers
Browse files

Make sure that `iIntros "*"` uses a fresh name.

parent 92024176
No related branches found
No related tags found
No related merge requests found
......@@ -755,7 +755,7 @@ Local Tactic Notation "iIntroForall" :=
lazymatch goal with
| |- _, ?P => fail
| |- _, _ => intro
| |- _ ( x : _, _) => iIntro (x)
| |- _ ( x : _, _) => let x' := fresh x in iIntro (x')
end.
Local Tactic Notation "iIntro" :=
try iStartProof;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment