summaryrefslogtreecommitdiff
path: root/test-suite/bugs/closed/3300.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/bugs/closed/3300.v')
-rw-r--r--test-suite/bugs/closed/3300.v7
1 files changed, 7 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/3300.v b/test-suite/bugs/closed/3300.v
new file mode 100644
index 00000000..a28144b9
--- /dev/null
+++ b/test-suite/bugs/closed/3300.v
@@ -0,0 +1,7 @@
+Set Primitive Projections.
+Record Box (T : Type) : Prop := wrap {prop : T}.
+
+Definition down (x : Type) : Prop := Box x.
+Definition up (x : Prop) : Type := x.
+
+Fail Definition back A : up (down A) -> A := @prop A.