aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite
diff options
context:
space:
mode:
authorGravatar Théo Zimmermann <theo.zimmermann@univ-paris-diderot.fr>2018-01-15 13:17:14 +0100
committerGravatar Théo Zimmermann <theo.zimmermann@univ-paris-diderot.fr>2018-01-15 13:22:06 +0100
commit54083a2a8e6c4c2083717ac18c7b4dc351ab0f7d (patch)
tree8254566a6bdfe345ffef0de1e9a4a57405793bac /test-suite
parente10b7ebe0eb05c01096d022f6f09e6c1562d5562 (diff)
Add test-suite file for bracket with goal selector.
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/success/BracketsWithGoalSelector.v10
1 files changed, 10 insertions, 0 deletions
diff --git a/test-suite/success/BracketsWithGoalSelector.v b/test-suite/success/BracketsWithGoalSelector.v
new file mode 100644
index 000000000..dd032767c
--- /dev/null
+++ b/test-suite/success/BracketsWithGoalSelector.v
@@ -0,0 +1,10 @@
+Goal forall A B, B \/ A -> A \/ B.
+Proof.
+ intros * [HB | HA].
+ 2: {
+ left.
+ exact HA.
+ }
+ right.
+ exact HB.
+Qed.