aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/bugs/closed/5019.v (renamed from test-suite/bugs/opened/5019.v)3
1 files changed, 2 insertions, 1 deletions
diff --git a/test-suite/bugs/opened/5019.v b/test-suite/bugs/closed/5019.v
index 09622097c5..7c973f88b5 100644
--- a/test-suite/bugs/opened/5019.v
+++ b/test-suite/bugs/closed/5019.v
@@ -1,4 +1,5 @@
Require Import Coq.ZArith.ZArith.
Goal forall (T0 : Z -> Type) (k : nat) d (P : T0 (Z.of_nat (S k)) -> Prop), P d.
clear; intros.
- Fail Timeout 1 zify.
+ Timeout 1 zify. (* used to loop forever; should take < 0.01 s *)
+Admitted.