aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/bugs/closed/5697.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/bugs/closed/5697.v')
-rw-r--r--test-suite/bugs/closed/5697.v9
1 files changed, 9 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/5697.v b/test-suite/bugs/closed/5697.v
index a17229aaf..c653f992a 100644
--- a/test-suite/bugs/closed/5697.v
+++ b/test-suite/bugs/closed/5697.v
@@ -8,3 +8,12 @@ intros.
intros H'.
congruence.
Qed.
+
+Record bar (A : Type) : Type := Bar { bar_car: A }.
+
+Goal forall x y : nat, x <> y -> Bar nat x <> Bar nat y.
+Proof.
+intros.
+intros H'.
+congruence.
+Qed.