diff options
| author | Matthieu Sozeau | 2014-06-11 17:19:14 +0200 |
|---|---|---|
| committer | Matthieu Sozeau | 2014-06-11 17:19:14 +0200 |
| commit | a4db087565dd2ecfa3bcc022277bed1a3c868fd3 (patch) | |
| tree | d7479089105c6d0f4ba7d56721a98b95353d47cd /test-suite/bugs | |
| parent | 99cdbc25a3a92545544a087ed55240c488b42fc9 (diff) | |
Fix bug #3291, stack overflow in rewrite.
Diffstat (limited to 'test-suite/bugs')
| -rw-r--r-- | test-suite/bugs/closed/3291.v (renamed from test-suite/bugs/opened/3291.v) | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test-suite/bugs/opened/3291.v b/test-suite/bugs/closed/3291.v index 4e1c2630e3..4ea748c0fb 100644 --- a/test-suite/bugs/opened/3291.v +++ b/test-suite/bugs/closed/3291.v @@ -4,5 +4,6 @@ Definition segv : forall x, (x = 0%nat) -> (forall (y : nat), (y < x)%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: +Set Typeclasses Debug. +Fail setoid_rewrite <- H. (* The command has indeed failed with message: => Stack overflow. *) |
