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

Fix error message of `iMod`

Thanks to @jtassaro for reporting this problem.
parent 2850f888
No related branches found
No related tags found
No related merge requests found
......@@ -969,8 +969,8 @@ Tactic Notation "iModCore" constr(H) :=
eapply tac_modal_elim with _ H _ _ _ _ _;
[env_reflexivity || fail "iMod:" H "not found"
|apply _ ||
let P := match goal with |- ElimModal ?P _ _ _ => P end in
let Q := match goal with |- ElimModal _ _ ?Q _ => Q end in
let P := match goal with |- ElimModal _ ?P _ _ _ => P end in
let Q := match goal with |- ElimModal _ _ _ ?Q _ => Q end in
fail "iMod: cannot eliminate modality " P "in" Q
|try fast_done (* optional side-condition *)
|env_reflexivity|].
......
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