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

Improve error message of `iRevert` in case of used variable.

parent 9a93c850
No related branches found
No related tags found
No related merge requests found
...@@ -570,7 +570,8 @@ Local Tactic Notation "iForallRevert" ident(x) := ...@@ -570,7 +570,8 @@ Local Tactic Notation "iForallRevert" ident(x) :=
intros x; intros x;
iMatchHyp (fun H P => iMatchHyp (fun H P =>
lazymatch P with lazymatch P with
| context [x] => fail 2 "iRevert:" x "is used in hypothesis" H | context [x] =>
let H := pretty_ident H in fail 2 "iRevert:" x "is used in hypothesis" H
end) in end) in
iStartProof; iStartProof;
first [let _ := type of x in idtac|fail 1 "iRevert:" x "not in scope"]; first [let _ := type of x in idtac|fail 1 "iRevert:" x "not in scope"];
......
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