diff options
| author | Matthieu Sozeau | 2014-06-17 14:21:51 +0200 |
|---|---|---|
| committer | Matthieu Sozeau | 2014-06-17 15:42:14 +0200 |
| commit | 2b7bede68c213fbb884c773c073ba31a886f41f4 (patch) | |
| tree | bb91ed3f2d7bf0dea38551cd5f7674842398b92d /test-suite | |
| parent | d104b50b9c9a589d9fd8e44bdf56794c8aea4e53 (diff) | |
Fix a de Bruijn bug in checking code of projections.
Diffstat (limited to 'test-suite')
| -rw-r--r-- | test-suite/bugs/opened/HoTT_coq_078.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test-suite/bugs/opened/HoTT_coq_078.v b/test-suite/bugs/opened/HoTT_coq_078.v index a2c97d0675..6c02cad567 100644 --- a/test-suite/bugs/opened/HoTT_coq_078.v +++ b/test-suite/bugs/opened/HoTT_coq_078.v @@ -35,7 +35,7 @@ Definition transport_prod' {A : Type} {P Q : A -> Type} {a a' : A} (p : a = a') | idpath => idpath end. (* success *) -Fail Definition transport_prod {A : Type} {P Q : A -> Type} {a a' : A} (p : a = a') +Definition transport_prod {A : Type} {P Q : A -> Type} {a a' : A} (p : a = a') (z : P a * Q a) : transport (fun a => P a * Q a) p z = (transport _ p (fst z), transport _ p (snd z)) := match p with |
