aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/success/destruct.v2
-rw-r--r--test-suite/success/goal_selector.v2
2 files changed, 2 insertions, 2 deletions
diff --git a/test-suite/success/destruct.v b/test-suite/success/destruct.v
index fd71f3c423..90a60daa66 100644
--- a/test-suite/success/destruct.v
+++ b/test-suite/success/destruct.v
@@ -106,7 +106,7 @@ Goal exists x, S 0 = S x.
eexists ?[x].
destruct (S _). (* Incompatible occurrences but takes the first one since Oct 2014 *)
change (0 = S ?x).
-?[x]: exact 0. (* Incidentally test applying a tactic to a goal on the shelve *)
+[x]: exact 0. (* Incidentally test applying a tactic to a goal on the shelve *)
Abort.
Goal exists n p:nat, (S n,S n) = (S p,S p) /\ p = n.
diff --git a/test-suite/success/goal_selector.v b/test-suite/success/goal_selector.v
index dd7ad10131..91fb54d9a1 100644
--- a/test-suite/success/goal_selector.v
+++ b/test-suite/success/goal_selector.v
@@ -51,5 +51,5 @@ Qed.
Goal True -> exists (x : Prop), x.
Proof.
- intro H; eexists ?[x]; ?[x]: exact True; assumption.
+ intro H; eexists ?[x]. [x]: exact True. 1: assumption.
Qed.