aboutsummaryrefslogtreecommitdiff
path: root/kernel/indtypes.ml
diff options
context:
space:
mode:
authorGaëtan Gilbert2019-01-10 14:43:56 +0100
committerGaëtan Gilbert2019-01-21 13:22:47 +0100
commit5f9a6c17b4353024e7510977a41cfb1de93a0f5f (patch)
tree90cad909e39d662f6d7f7293d47c242edd9d4d8e /kernel/indtypes.ml
parent05e2222e04323d11429d659b415750cf40e2babd (diff)
Move inductive_error to Type_errors
Diffstat (limited to 'kernel/indtypes.ml')
-rw-r--r--kernel/indtypes.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/indtypes.ml b/kernel/indtypes.ml
index 68d44f8782..e0f60a3731 100644
--- a/kernel/indtypes.ml
+++ b/kernel/indtypes.ml
@@ -56,7 +56,7 @@ let is_constructor_head t =
(* Various well-formedness check for inductive declarations *)
(* Errors related to inductive constructions *)
-type inductive_error =
+type inductive_error = Type_errors.inductive_error =
| NonPos of env * constr * constr
| NotEnoughArgs of env * constr * constr
| NotConstructor of env * Id.t * constr * constr * int * int