Skip to content
Snippets Groups Projects
Commit b5d08cb7 authored by Ralf Jung's avatar Ralf Jung
Browse files

Merge branch 'coq_14928' into 'master'

parents 8043d14b ffe12cff
No related branches found
No related tags found
No related merge requests found
......@@ -146,7 +146,7 @@ Section inv.
iMod ("HinvQ" with "[%]") as "[$ HcloseQ]"; first set_solver.
iApply fupd_mask_intro; first set_solver.
iIntros "Hclose [HP HQ]".
iMod "Hclose" as %_. iMod ("HcloseQ" with "HQ") as %_. by iApply "HcloseP".
iMod "Hclose" as % _. iMod ("HcloseQ" with "HQ") as % _. by iApply "HcloseP".
Qed.
Lemma inv_combine_dup_l N P Q :
......@@ -156,7 +156,7 @@ Section inv.
rewrite inv_unseal. iIntros "#HPdup #HinvP #HinvQ !>" (E ?).
iMod ("HinvP" with "[//]") as "[HP HcloseP]".
iDestruct ("HPdup" with "HP") as "[$ HP]".
iMod ("HcloseP" with "HP") as %_.
iMod ("HcloseP" with "HP") as % _.
iMod ("HinvQ" with "[//]") as "[$ HcloseQ]".
iIntros "!> [HP HQ]". by iApply "HcloseQ".
Qed.
......
......@@ -382,8 +382,8 @@ Proof.
iIntros "HP HQ".
iAssert True%I as "#_". { by iClear "HP HQ". }
iAssert True%I with "[HP]" as "#_". { Fail iClear "HQ". by iClear "HP". }
iAssert True%I as %_. { by iClear "HP HQ". }
iAssert True%I with "[HP]" as %_. { Fail iClear "HQ". by iClear "HP". }
iAssert True%I as % _. { by iClear "HP HQ". }
iAssert True%I with "[HP]" as % _. { Fail iClear "HQ". by iClear "HP". }
done.
Qed.
......
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