aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorherbelin2012-07-06 20:44:46 +0000
committerherbelin2012-07-06 20:44:46 +0000
commit73d5a4fd2d54c21a7d3b493993313d13618ce831 (patch)
tree552d619ae1393c82b69249b8f6d66de62ce1176f /test-suite
parent3e6d3a9a35660e32c478ac8e5da5e76d25c905b5 (diff)
Continuing r15459: it helps testing occur-check early in some
situations (see rewrite MonoidMonadTrans.bind_toLower' in Misc/QuicksortComplexity/monoid_expec.v). Also fixing badly designed test 2817.v. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@15543 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/bugs/closed/shouldsucceed/2817.v3
1 files changed, 2 insertions, 1 deletions
diff --git a/test-suite/bugs/closed/shouldsucceed/2817.v b/test-suite/bugs/closed/shouldsucceed/2817.v
index 25ac15574c..08dff99287 100644
--- a/test-suite/bugs/closed/shouldsucceed/2817.v
+++ b/test-suite/bugs/closed/shouldsucceed/2817.v
@@ -5,4 +5,5 @@ Goal forall (f: nat -> nat -> Prop) (x:bool)
(H0: forall x0, f (if x then x0 else x0) x0),
False.
-intros; apply H in H0. (* crashes *)
+intros.
+Fail apply H in H0. (* should fail without exhausting the stack *)