aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthieu Sozeau2014-06-26 12:34:03 +0200
committerMatthieu Sozeau2014-06-26 12:34:03 +0200
commit34570d23cf6ae7f6246b38e5094454b0eeea3e75 (patch)
tree81f4eff3f5c2723a572a685852c9d296009961b1
parente92ea9b9b2ab27f80b134a7e1594a2423159c012 (diff)
Fix test-suite file, adding the proper Fail.
-rw-r--r--test-suite/bugs/opened/HoTT_coq_078.v2
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 6c02cad567..a2c97d0675 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 *)
-Definition transport_prod {A : Type} {P Q : A -> Type} {a a' : A} (p : a = a')
+Fail 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