diff options
| author | Matthieu Sozeau | 2015-07-09 16:09:29 +0200 |
|---|---|---|
| committer | Matthieu Sozeau | 2015-07-09 16:11:50 +0200 |
| commit | e1f5a499c43ec0d7b7ebe696941217fb503e2596 (patch) | |
| tree | 8db12f45feb4d22547c71d934faf2ab955cd800d /test-suite/bugs/closed/4276.v | |
| parent | 26911bbc0bb3347c922d12b07a1c2bc34bba3c8d (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.v | 11 |
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 0000000000..ba82e6c376 --- /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 |
