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

Tweak some names in test file.

parent e4347ec2
No related branches found
No related tags found
No related merge requests found
......@@ -659,14 +659,14 @@ Tactic failure: iLöb: no 'BiLöb' instance found.
1 subgoal
PROP : bi
P1 : PROP
P2, P3 : Prop
Himpl : P2P3
HP2 : P2
P : PROP
φ1, φ2 : Prop
Himpl : φ1φ2
HP2 : φ1
============================
"HP" : P1
"HP" : P
--------------------------------------∗
P1 ∗ ⌜P3
P ∗ ⌜φ2
"test_not_fresh"
: string
......
......@@ -1245,8 +1245,8 @@ Ltac ltac_tactics.string_to_ident_hook ::=
end).
Check "test_pure_name".
Lemma test_pure_name P1 (P2 P3: Prop) (Himpl: P2 -> P3) :
P1 P2 -∗ P1 P3⌝.
Lemma test_pure_name P (φ1 φ2 : Prop) (Himpl : φ1 φ2) :
P φ1 -∗ P φ2⌝.
Proof.
iIntros "[HP %HP2]".
Show.
......@@ -1260,8 +1260,8 @@ Lemma test_iIntros_forall_pure_named (Ψ: nat → PROP) :
Proof. iIntros "HP". iIntros "%y". iApply ("HP" $! y). Qed.
Check "test_not_fresh".
Lemma test_not_fresh P1 (P2: Prop) (H:P2) :
P1 P2 -∗ P1 P2⌝.
Lemma test_not_fresh P (φ : Prop) (H : φ) :
P φ -∗ P φ ⌝.
Proof.
Fail iIntros "[H %H]".
Abort.
......
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