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

Error message when =>[H1 .. Hn] is used and goal is not a pvs.

parent e965b669
No related branches found
No related tags found
No related merge requests found
......@@ -190,7 +190,10 @@ Local Tactic Notation "iSpecializePat" constr(H) constr(pat) :=
eapply tac_specialize_assert with _ _ _ H1 _ lr Hs _ _ _ _;
[env_cbv; reflexivity || fail "iSpecialize:" H1 "not found"
|solve_to_wand H1
|match k with GoalStd => apply to_assert_fallthrough | GoalPvs => apply _ end
|match k with
| GoalStd => apply to_assert_fallthrough
| GoalPvs => apply _ || fail "iSpecialize: cannot generate pvs goal"
end
|env_cbv; reflexivity || fail "iSpecialize:" Hs "not found"
|(*goal*)
|go H1 pats]
......@@ -713,7 +716,10 @@ Tactic Notation "iAssert" constr(Q) "with" constr(Hs) "as" constr(pat) :=
|iDestructHyp H as pat]
| [SGoal ?k ?lr ?Hs] =>
eapply tac_assert with _ _ _ lr Hs H Q _; (* (js:=Hs) (j:=H) (P:=Q) *)
[match k with GoalStd => apply to_assert_fallthrough | GoalPvs => apply _ end
[match k with
| GoalStd => apply to_assert_fallthrough
| GoalPvs => apply _ || fail "iAssert: cannot generate pvs goal"
end
|env_cbv; reflexivity || fail "iAssert:" Hs "not found"
|env_cbv; reflexivity|
|iDestructHyp H as pat]
......
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