aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2018-08-28 11:28:50 +0200
committerPierre-Marie Pédrot2018-08-28 11:28:50 +0200
commitf885e8a88620351d9dc4b0969f520d13197f2184 (patch)
treee9233c855e770e256dcc4dcb9fa5bb956069471f /test-suite
parent5e2eedb3f9068a87eda0d7e08c82127ddef224fb (diff)
parent7a7e39f8a0279a149c6b7c20f026cb629aa489f7 (diff)
Merge PR #8112: Add support for focusing on named goals using brackets.
Diffstat (limited to 'test-suite')
-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 ed035f5213..2f7425bce6 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.