Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Iris
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Pierre Roux
Iris
Commits
bfdd67a7
Commit
bfdd67a7
authored
7 years ago
by
Robbert Krebbers
Browse files
Options
Downloads
Patches
Plain Diff
Fix `iIntros` regression caused by
b0ae1102
.
parent
c95907b9
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
theories/proofmode/tactics.v
+1
-1
1 addition, 1 deletion
theories/proofmode/tactics.v
theories/tests/proofmode.v
+4
-0
4 additions, 0 deletions
theories/tests/proofmode.v
with
5 additions
and
1 deletion
theories/proofmode/tactics.v
+
1
−
1
View file @
bfdd67a7
...
...
@@ -939,7 +939,7 @@ Tactic Notation "iIntros" constr(pat) :=
|
?pat
::
?pats
=>
let
H
:=
iFresh
in
iIntro
H
;
iDestructHyp
H
as
pat
;
go
pats
end
in
let
pats
:=
intro_pat
.
parse
pat
in
iStartProof
;
go
pats
.
in
let
pats
:=
intro_pat
.
parse
pat
in
try
iStartProof
;
go
pats
.
Tactic
Notation
"iIntros"
:=
iIntros
[
IAll
]
.
Tactic
Notation
"iIntros"
"("
simple_intropattern
(
x1
)
")"
:=
...
...
This diff is collapsed.
Click to expand it.
theories/tests/proofmode.v
+
4
−
0
View file @
bfdd67a7
...
...
@@ -93,6 +93,10 @@ Proof.
iIntros
"# _ //"
.
Qed
.
Lemma
test_very_fast_iIntros
P
:
∀
x
y
:
nat
,
⌜
x
=
y
⌝
-∗
P
-∗
P
.
Proof
.
by
iIntros
.
Qed
.
Lemma
test_iDestruct_spatial_and
P
Q1
Q2
:
P
∗
(
Q1
∧
Q2
)
-∗
P
∗
Q1
.
Proof
.
iIntros
"[H1 [H2 _]]"
.
by
iFrame
.
Qed
.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment