aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorMaxime Dénès2018-12-22 00:42:07 +0100
committerMaxime Dénès2019-01-22 11:17:59 +0100
commitfc2bc9f806ad7627ca2288ae9dfd27512462a5fa (patch)
treea823e30542c1ed24338c2c0129d3c96789a9dc64 /test-suite
parent9b142e358daf798cab79cafba6d9da5941481f53 (diff)
Make `Add Morphism` not rely on Refine Instance
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/bugs/closed/bug_4498.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/test-suite/bugs/closed/bug_4498.v b/test-suite/bugs/closed/bug_4498.v
index 379e46b3e3..9b3210860c 100644
--- a/test-suite/bugs/closed/bug_4498.v
+++ b/test-suite/bugs/closed/bug_4498.v
@@ -19,6 +19,6 @@ Class Category := {
Require Export Coq.Setoids.Setoid.
-Add Parametric Morphism `{C : Category} {A B C} : (@compose _ A B C) with
+Add Parametric Morphism `{Category} {A B C} : (@compose _ A B C) with
signature equiv ==> equiv ==> equiv as compose_mor.
Proof. apply comp_respects. Qed.