aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/bugs/closed/3045.v
diff options
context:
space:
mode:
authorGravatar Enrico Tassi <Enrico.Tassi@inria.fr>2016-09-29 15:23:07 +0200
committerGravatar Enrico Tassi <Enrico.Tassi@inria.fr>2016-09-29 17:51:06 +0200
commit601fd9343a241706c0a205aaf8e08255753c3780 (patch)
tree8e704db53a79b588303cd5fe98448e598dd79518 /test-suite/bugs/closed/3045.v
parentfdfcdc79989c46737089e4c8cab5ad0090e4d8a6 (diff)
Arguments: cleanup + detect discrepancy rename/implicit (#3753)
It seems warnings are not taken into account in output/ tests.
Diffstat (limited to 'test-suite/bugs/closed/3045.v')
-rw-r--r--test-suite/bugs/closed/3045.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/test-suite/bugs/closed/3045.v b/test-suite/bugs/closed/3045.v
index ef110ad0d..5f80013df 100644
--- a/test-suite/bugs/closed/3045.v
+++ b/test-suite/bugs/closed/3045.v
@@ -12,7 +12,7 @@ Record SpecializedCategory (obj : Type) :=
Compose : forall s d d', Morphism d d' -> Morphism s d -> Morphism s d'
}.
-Arguments Compose {obj} [C s d d'] m1 m2 : rename.
+Arguments Compose {obj} [C s d d'] _ _ : rename.
Inductive ReifiedMorphism : forall objC (C : SpecializedCategory objC), C -> C -> Type :=
| ReifiedComposedMorphism : forall objC C s d d', ReifiedMorphism C d d' -> ReifiedMorphism C s d -> @ReifiedMorphism objC C s d'.