diff --git a/tests/proofmode.v b/tests/proofmode.v index 97aa9604a368e42f51c25460be84c568ee01ae9f..9d5336d56944da28a4d63c66ffd636ad3d6f0538 100644 --- a/tests/proofmode.v +++ b/tests/proofmode.v @@ -480,11 +480,18 @@ Proof. Qed. (* Ensure that [% %] works as a pattern for an existential with a pure body. *) -Lemma test_exist_pure_destruct : +Lemma test_exist_pure_destruct_1 : (∃ x, ⌜ x = 0 âŒ) ⊢@{PROP} True. Proof. iIntros "[% %]". done. Qed. +(* Also test nested existentials where the type of the 2nd depends on the first +(which could cause trouble if we do things in the wrong order) *) +Lemma test_exist_pure_destruct_2 : + (∃ x (_:x=0), True) ⊢@{PROP} True. +Proof. + iIntros "(% & % & $)". +Qed. Lemma test_fresh P Q: (P ∗ Q) -∗ (P ∗ Q).