diff options
| author | Matthieu Sozeau | 2014-06-11 15:46:17 +0200 |
|---|---|---|
| committer | Matthieu Sozeau | 2014-06-11 15:46:17 +0200 |
| commit | 1c620d266885086e076011917d5b1d28af299ea1 (patch) | |
| tree | 0c646e7b10a45a7c5e462270cb4a5d406e3cdf6b | |
| parent | 5f5198673cb8688e746861929e96160e04396ee9 (diff) | |
Move bug # 3368 to closed bugs
| -rw-r--r-- | test-suite/bugs/closed/3368.v (renamed from test-suite/bugs/opened/3368.v) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test-suite/bugs/opened/3368.v b/test-suite/bugs/closed/3368.v index c0c00b4edf..64fb035681 100644 --- a/test-suite/bugs/opened/3368.v +++ b/test-suite/bugs/closed/3368.v @@ -6,10 +6,10 @@ Record Functor (C D : PreCategory) := { object_of :> C -> D; morphism_of : forall s d, morphism C s d -> morphism D (object_of s) (object_of d) }. Definition opposite (C : PreCategory) : PreCategory := @Build_PreCategory C (fun s d => morphism C d s). -Fail Definition opposite' C D (F : Functor C D) +Definition opposite' C D (F : Functor C D) := Build_Functor (opposite C) (opposite D) (object_of F) - (fun s d => @morphism_of C D F s d). + (fun s d => @morphism_of C D F d s). (* Toplevel input, characters 15-191: Anomaly: File "pretyping/reductionops.ml", line 149, characters 4-10: Assertion failed. Please report. *) |
