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

add tests for recently fixed issues

parent aaa4f987
No related branches found
No related tags found
No related merge requests found
......@@ -181,6 +181,19 @@ Proof.
iLöb as "IH". iDestruct "IH" as (n) "IH".
by iExists (S n).
Qed.
Lemma test_iIntros_start_proof :
(True : uPred M)%I.
Proof.
(* Make sure iIntros actually makes progress and enters the proofmode. *)
progress iIntros. done.
Qed.
Lemma test_True_intros : (True : uPred M) -∗ True.
Proof.
iIntros "?". done.
Qed.
End tests.
Section more_tests.
......
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