aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/success
diff options
context:
space:
mode:
authorGravatar Maxime Dénès <mail@maximedenes.fr>2018-01-16 13:34:46 +0100
committerGravatar Maxime Dénès <mail@maximedenes.fr>2018-01-16 13:34:46 +0100
commitb0ac9d9748440badec581a3a804caec09c6df49d (patch)
tree73ff209532c950b2a83854ebc015a58cad864798 /test-suite/success
parent8ea2a8307a8d96f8275ebbd9bd4cbd1f6b0a00c6 (diff)
parent1856d60057ac9096c791d71d4282c0cdfef85913 (diff)
Merge PR #6551: Bracket with goal selector
Diffstat (limited to 'test-suite/success')
-rw-r--r--test-suite/success/BracketsWithGoalSelector.v16
1 files changed, 16 insertions, 0 deletions
diff --git a/test-suite/success/BracketsWithGoalSelector.v b/test-suite/success/BracketsWithGoalSelector.v
new file mode 100644
index 000000000..ed035f521
--- /dev/null
+++ b/test-suite/success/BracketsWithGoalSelector.v
@@ -0,0 +1,16 @@
+Goal forall A B, B \/ A -> A \/ B.
+Proof.
+ intros * [HB | HA].
+ 2: {
+ left.
+ exact HA.
+ Fail right. (* No such goal. Try unfocusing with "}". *)
+ }
+ Fail 2: { (* Non-existent goal. *)
+ idtac. (* The idtac is to get a dot, so that IDEs know to stop there. *)
+ 1:{ (* Syntactic test: no space before bracket. *)
+ right.
+ exact HB.
+Fail Qed.
+ }
+Qed.