aboutsummaryrefslogtreecommitdiff
path: root/test-suite/prerequisite
diff options
context:
space:
mode:
authorSimonBoulier2019-12-19 16:51:04 +0100
committerSimonBoulier2020-01-07 10:11:21 +0100
commita2802a0b93aa24e4340be6cb3de7fff865028189 (patch)
tree5994fd9f99f5f1a6b44496eef9c4281dc464a08a /test-suite/prerequisite
parent751ad4098768569450306b7e269081bbac81ea71 (diff)
Fix test-suite fo non maximal implicit arguments
Diffstat (limited to 'test-suite/prerequisite')
-rw-r--r--test-suite/prerequisite/ssr_mini_mathcomp.v6
1 files changed, 3 insertions, 3 deletions
diff --git a/test-suite/prerequisite/ssr_mini_mathcomp.v b/test-suite/prerequisite/ssr_mini_mathcomp.v
index d293dc0533..048fb3b027 100644
--- a/test-suite/prerequisite/ssr_mini_mathcomp.v
+++ b/test-suite/prerequisite/ssr_mini_mathcomp.v
@@ -65,7 +65,7 @@ Proof. by []. Qed.
Lemma eqP T : Equality.axiom (@eq_op T).
Proof. by case: T => ? []. Qed.
-Arguments eqP [T x y].
+Arguments eqP {T x y}.
Delimit Scope eq_scope with EQ.
Open Scope eq_scope.
@@ -345,7 +345,7 @@ Proof. by []. Qed.
End SubEqType.
-Arguments val_eqP [T P sT x y].
+Arguments val_eqP {T P sT x y}.
Prenex Implicits val_eqP.
Notation "[ 'eqMixin' 'of' T 'by' <: ]" := (SubEqMixin _ : Equality.class_of T)
@@ -386,7 +386,7 @@ Qed.
Canonical nat_eqMixin := EqMixin eqnP.
Canonical nat_eqType := Eval hnf in EqType nat nat_eqMixin.
-Arguments eqnP [x y].
+Arguments eqnP {x y}.
Prenex Implicits eqnP.
Coercion nat_of_bool (b : bool) := if b then 1 else 0.