aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/bugs/closed/4276.v
diff options
context:
space:
mode:
authorGravatar Matthieu Sozeau <matthieu.sozeau@inria.fr>2015-07-09 16:09:29 +0200
committerGravatar Matthieu Sozeau <matthieu.sozeau@inria.fr>2015-07-09 16:11:50 +0200
commite1f5a499c43ec0d7b7ebe696941217fb503e2596 (patch)
tree8db12f45feb4d22547c71d934faf2ab955cd800d /test-suite/bugs/closed/4276.v
parent26911bbc0bb3347c922d12b07a1c2bc34bba3c8d (diff)
Kernel: primitive projections handling of let-ins
Fixes bug #4176 (actually two bugs in one) Correct computation of the type of primitive projections in presence of let-ins.
Diffstat (limited to 'test-suite/bugs/closed/4276.v')
-rw-r--r--test-suite/bugs/closed/4276.v11
1 files changed, 11 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/4276.v b/test-suite/bugs/closed/4276.v
new file mode 100644
index 000000000..ba82e6c37
--- /dev/null
+++ b/test-suite/bugs/closed/4276.v
@@ -0,0 +1,11 @@
+Set Primitive Projections.
+
+Record box (T U : Type) (x := T) := wrap { unwrap : T }.
+Definition mybox : box True False := wrap _ _ I.
+Definition unwrap' := @unwrap.
+
+Definition bad' : True := mybox.(unwrap _ _).
+
+Fail Definition bad : False := unwrap _ _ mybox.
+
+(* Closed under the global context *) \ No newline at end of file