aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/success/intros.v6
1 files changed, 6 insertions, 0 deletions
diff --git a/test-suite/success/intros.v b/test-suite/success/intros.v
index 25e0ec2f7e..bb9fc0c50d 100644
--- a/test-suite/success/intros.v
+++ b/test-suite/success/intros.v
@@ -22,3 +22,9 @@ hnf.
match goal with [ |- 0 = 0 ] => reflexivity end.
Abort.
+(* Fixing behavior of "*" and "**" in branches, so that they do not
+ introduce more than what the branch expects them to introduce at most *)
+Goal forall n p, n + p = 0.
+intros [|*]; intro p.
+Abort.
+