aboutsummaryrefslogtreecommitdiff
path: root/test-suite/bugs/opened
diff options
context:
space:
mode:
authorMatthieu Sozeau2014-08-08 12:44:17 +0200
committerMatthieu Sozeau2014-08-08 12:49:25 +0200
commit758f031bc2e2d4a5ece6d515533fafe3e9df98d5 (patch)
treec4526eb222f31b410da3bf92ffd4799e0078c707 /test-suite/bugs/opened
parent21994cc4c617582f4f94577c1c582a7b51b7770b (diff)
Fix evarconv not applying eta when it used to. Fixes bug#3319.
Diffstat (limited to 'test-suite/bugs/opened')
-rw-r--r--test-suite/bugs/opened/3319.v28
1 files changed, 0 insertions, 28 deletions
diff --git a/test-suite/bugs/opened/3319.v b/test-suite/bugs/opened/3319.v
deleted file mode 100644
index 7851a08ea4..0000000000
--- a/test-suite/bugs/opened/3319.v
+++ /dev/null
@@ -1,28 +0,0 @@
-(* File reduced by coq-bug-finder from original input, then from 5353 lines to 4545 lines, then from 4513 lines to 4504 lines, then from 4515 lines to 4508 lines, then from 4519 lines to 132 lines, then from 111 lines to 66 lines, then from 68 lines to 35 lines *)
-Set Implicit Arguments.
-Inductive paths {A : Type} (a : A) : A -> Type :=
- idpath : paths a a
- where "x = y" := (@paths _ x y) : type_scope.
-Record PreCategory := { obj :> Type; morphism : obj -> obj -> Type }.
-Record NotionOfStructure (X : PreCategory) :=
- { structure :> X -> Type;
- is_structure_homomorphism
- : forall x y (f : morphism X x y) (a : structure x) (b : structure y), Type }.
-
-Section precategory.
- Variable X : PreCategory.
- Variable P : NotionOfStructure X.
- Local Notation object := { x : X & P x }.
- Record morphism' (xa yb : object) := {}.
- Fail Lemma issig_morphism xa yb
- : { f : morphism X (projT1 xa) (projT1 yb)
- & is_structure_homomorphism _ _ _ f (projT2 xa) (projT2 yb) }
- = morphism' xa yb. (* Toplevel input, characters 169-171:
-Error:
-In environment
-X : PreCategory
-P : NotionOfStructure X
-xa : {x : _ & ?26 x}
-yb : {x : _ & ?26 x}
-The term "xa" has type "{x : _ & ?26 x}" while it is expected to have type
- "{x : X & P x}". *)