diff --git a/tests/proofmode.v b/tests/proofmode.v index b0d52b54cdda219b960312d704bb64e2e07e74f4..6057efb1c269752444b301cbe90c1667d1e1141a 100644 --- a/tests/proofmode.v +++ b/tests/proofmode.v @@ -239,6 +239,8 @@ Proof. iFrame. Qed. +(* Test for issue #288 *) +(* FIXME: Restore once we drop support for Coq 8.8 and Coq 8.9. Lemma test_iExists_unused : (∃ P : PROP, ∃ x : nat, P)%I. Proof. iExists _. @@ -246,6 +248,7 @@ Proof. iAssert emp%I as "H"; first done. iExact "H". Qed. +*) (* Check coercions *) Lemma test_iExist_coercion (P : Z → PROP) : (∀ x, P x) -∗ ∃ x, P x.