aboutsummaryrefslogtreecommitdiff
path: root/test-suite/bugs/opened
diff options
context:
space:
mode:
authorMatthieu Sozeau2014-06-11 17:19:14 +0200
committerMatthieu Sozeau2014-06-11 17:19:14 +0200
commita4db087565dd2ecfa3bcc022277bed1a3c868fd3 (patch)
treed7479089105c6d0f4ba7d56721a98b95353d47cd /test-suite/bugs/opened
parent99cdbc25a3a92545544a087ed55240c488b42fc9 (diff)
Fix bug #3291, stack overflow in rewrite.
Diffstat (limited to 'test-suite/bugs/opened')
-rw-r--r--test-suite/bugs/opened/3291.v8
1 files changed, 0 insertions, 8 deletions
diff --git a/test-suite/bugs/opened/3291.v b/test-suite/bugs/opened/3291.v
deleted file mode 100644
index 4e1c2630e3..0000000000
--- a/test-suite/bugs/opened/3291.v
+++ /dev/null
@@ -1,8 +0,0 @@
-Require Import Setoid.
-
-Definition segv : forall x, (x = 0%nat) -> (forall (y : nat), (y < x)%nat -> nat) = forall (y : nat), (y < 0)%nat -> nat.
-intros x eq.
-assert (H : forall y, (y < x)%nat = (y < 0)%nat).
-rewrite -> eq. auto.
-Fail Timeout 1 setoid_rewrite <- H. (* The command has indeed failed with message:
-=> Stack overflow. *)