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

Fix bug in iDestruct "H" as %intro_pat.

parent 962c99d0
No related branches found
No related tags found
No related merge requests found
......@@ -515,7 +515,7 @@ Tactic Notation "iDestruct" open_constr(H) "as" "{" simple_intropattern(x1)
iDestructHelp H as (fun H => iDestructHyp H as { x1 x2 x3 x4 x5 x6 x7 x8 } pat).
Tactic Notation "iDestruct" open_constr(H) "as" "%" simple_intropattern(pat) :=
let Htmp := iFresh in iDestruct H as Htmp; iPure Htmp as pat.
let Htmp := iFresh in iDestruct H as Htmp; last iPure Htmp as pat.
(** * Always *)
Tactic Notation "iAlways":=
......
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