summaryrefslogtreecommitdiff
path: root/test-suite/bugs/closed/4588.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/bugs/closed/4588.v')
-rw-r--r--test-suite/bugs/closed/4588.v10
1 files changed, 10 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/4588.v b/test-suite/bugs/closed/4588.v
new file mode 100644
index 00000000..ff66277e
--- /dev/null
+++ b/test-suite/bugs/closed/4588.v
@@ -0,0 +1,10 @@
+Set Primitive Projections.
+
+(* This proof was accepted in Coq 8.5 because the subterm specs were not
+projected correctly *)
+Inductive foo : Prop := mkfoo { proj1 : False -> foo; proj2 : (forall P : Prop, P -> P) }.
+
+Fail Fixpoint loop (x : foo) : False :=
+ loop (proj2 x _ x).
+
+Fail Definition bad : False := loop (mkfoo (fun x => match x with end) (fun _ x => x)).