aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorHugo Herbelin2015-12-10 19:14:19 +0100
committerHugo Herbelin2015-12-10 19:15:15 +0100
commitcdaf8e2ed109bd117da2366a279fa575d7b6185a (patch)
treed4b5a0295d4acae7a00a659c9955dde6bac1f545 /test-suite
parentfb77937a6ba0fe45e978911db08de57f931683e1 (diff)
Fixing a pat%constr bug. Thanks to Enrico for reporting.
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 17f160f98e..11156aa0ee 100644
--- a/test-suite/success/intros.v
+++ b/test-suite/success/intros.v
@@ -78,3 +78,9 @@ intros H2%H%H0.
- exact H2.
- exact H1.
Qed.
+
+(* Bug found by Enrico *)
+
+Goal forall x : nat, True.
+intros y%(fun x => x).
+Abort.