summaryrefslogtreecommitdiff
path: root/test-suite/success/BracketsWithGoalSelector.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/success/BracketsWithGoalSelector.v')
-rw-r--r--test-suite/success/BracketsWithGoalSelector.v9
1 files changed, 9 insertions, 0 deletions
diff --git a/test-suite/success/BracketsWithGoalSelector.v b/test-suite/success/BracketsWithGoalSelector.v
index ed035f52..2f7425bc 100644
--- a/test-suite/success/BracketsWithGoalSelector.v
+++ b/test-suite/success/BracketsWithGoalSelector.v
@@ -14,3 +14,12 @@ Proof.
Fail Qed.
}
Qed.
+
+Lemma foo (n: nat) (P : nat -> Prop):
+ P n.
+Proof.
+ intros.
+ refine (nat_ind _ ?[Base] ?[Step] _).
+ [Base]: { admit. }
+ [Step]: { admit. }
+Abort.