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

Add tests.

parent 15eef304
No related branches found
No related tags found
No related merge requests found
......@@ -589,6 +589,12 @@ Tactic failure: iSpecialize: "H" not found.
: string
The command has indeed failed with message:
Tactic failure: iSpecialize: "H" not found.
"iSpecialize_autoframe_fail"
: string
The command has indeed failed with message:
Tactic failure: iSpecialize: premise cannot be solved by framing.
The command has indeed failed with message:
Tactic failure: iSpecialize: premise cannot be solved by framing.
"iExact_fail"
: string
The command has indeed failed with message:
......
......@@ -1305,6 +1305,14 @@ Proof.
iIntros "HW HP". Fail iSpecialize ("HW" with "H").
Abort.
Check "iSpecialize_autoframe_fail".
Lemma iSpecialize_autoframe_fail P Q : (P -∗ Q) -∗ Q.
Proof.
iIntros "H".
Fail iSpecialize ("H" with "[$]").
Fail iApply ("H" with "[$]").
Abort.
Check "iExact_fail".
Lemma iExact_fail P Q :
<affine> P -∗ Q -∗ <affine> P.
......
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