aboutsummaryrefslogtreecommitdiff
path: root/test-suite/bugs/closed
diff options
context:
space:
mode:
authorHugo Herbelin2014-12-16 16:55:43 +0100
committerHugo Herbelin2014-12-16 16:55:43 +0100
commit811df9475898045b720f804c7d49638faa4e8478 (patch)
treeb54fbe2cda58b78cfb08c2da9a494f9e855588aa /test-suite/bugs/closed
parent22aa11b21202a44c35da70970da6b34479c4a815 (diff)
Moving #2447 (congruence) to fixed.
Diffstat (limited to 'test-suite/bugs/closed')
-rw-r--r--test-suite/bugs/closed/2447.v7
1 files changed, 7 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/2447.v b/test-suite/bugs/closed/2447.v
new file mode 100644
index 0000000000..fdeb69fcc7
--- /dev/null
+++ b/test-suite/bugs/closed/2447.v
@@ -0,0 +1,7 @@
+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.
+intros; congruence. (* was doing stack overflow *)
+Qed.