aboutsummaryrefslogtreecommitdiff
path: root/kernel/type_errors.mli
diff options
context:
space:
mode:
authorMaxime Dénès2017-12-11 11:35:17 +0100
committerMaxime Dénès2017-12-11 11:35:17 +0100
commita77f3a3e076e273af35ad520cae2eef0e3552811 (patch)
treebedea2242a6c3f0e2deb6a2cd4f731f7c5014824 /kernel/type_errors.mli
parent5aaa240e4480ade7a5348e71a95fe3b2bc5a2c4e (diff)
parent611da26d847888031cac4d6976b9e7e1e90cdc0e (diff)
Merge PR #6368: [api] Remove yet another type alias.
Diffstat (limited to 'kernel/type_errors.mli')
-rw-r--r--kernel/type_errors.mli4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/type_errors.mli b/kernel/type_errors.mli
index e4fa65686e..72861f6e48 100644
--- a/kernel/type_errors.mli
+++ b/kernel/type_errors.mli
@@ -60,7 +60,7 @@ type ('constr, 'types) ptype_error =
| IllFormedRecBody of 'constr pguard_error * Name.t array * int * env * ('constr, 'types) punsafe_judgment array
| IllTypedRecBody of
int * Name.t array * ('constr, 'types) punsafe_judgment array * 'types array
- | UnsatisfiedConstraints of Univ.constraints
+ | UnsatisfiedConstraints of Univ.Constraint.t
type type_error = (constr, types) ptype_error
@@ -105,4 +105,4 @@ val error_ill_typed_rec_body :
val error_elim_explain : Sorts.family -> Sorts.family -> arity_error
-val error_unsatisfied_constraints : env -> Univ.constraints -> 'a
+val error_unsatisfied_constraints : env -> Univ.Constraint.t -> 'a