aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test-suite/bugs/closed/2447.v (renamed from test-suite/bugs/opened/2447.v)3
1 files changed, 2 insertions, 1 deletions
diff --git a/test-suite/bugs/opened/2447.v b/test-suite/bugs/closed/2447.v
index 503a85d41c..fdeb69fcc7 100644
--- a/test-suite/bugs/opened/2447.v
+++ b/test-suite/bugs/closed/2447.v
@@ -3,4 +3,5 @@ Record t := {x : bool; y : bool; z : bool}.
Goal forall x1 x2 y z,
{| x := x1; y := y; z := z |} = {| x := x2; y := y; z := z |} -> x1 = x2.
Proof.
-Timeout 5 (intros; congruence).
+intros; congruence. (* was doing stack overflow *)
+Qed.