summaryrefslogtreecommitdiff
path: root/test-suite/bugs/closed/5281.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/bugs/closed/5281.v')
-rw-r--r--test-suite/bugs/closed/5281.v6
1 files changed, 6 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/5281.v b/test-suite/bugs/closed/5281.v
new file mode 100644
index 00000000..03bafdc9
--- /dev/null
+++ b/test-suite/bugs/closed/5281.v
@@ -0,0 +1,6 @@
+Inductive A (T : Prop) := B (_ : T).
+Scheme Equality for A.
+
+Goal forall (T:Prop), (forall x y : T, {x=y}+{x<>y}) -> forall x y : A T, {x=y}+{x<>y}.
+decide equality.
+Qed.