aboutsummaryrefslogtreecommitdiffhomepage
path: root/kernel/type_errors.mli
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2001-11-20 14:38:21 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2001-11-20 14:38:21 +0000
commit52c0bf0da05bcfce49ce5c8321e8b9ed7b3a1cb5 (patch)
tree8222d00a63e6ab08d8f5eac3d8fce7a29083a43c /kernel/type_errors.mli
parent2ba5fc92551cfe9632ad01a5ae52aa7c7d0241f6 (diff)
types vs constr
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@2210 85f007b7-540e-0410-9357-904b9bb8a0f7
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 3ffb585c5..99b46877a 100644
--- a/kernel/type_errors.mli
+++ b/kernel/type_errors.mli
@@ -42,7 +42,7 @@ type type_error =
| NotAType of unsafe_judgment
| BadAssumption of unsafe_judgment
| ReferenceVariables of constr
- | ElimArity of inductive * constr list * constr * unsafe_judgment
+ | ElimArity of inductive * types list * constr * unsafe_judgment
* (constr * constr * string) option
| CaseNotInductive of unsafe_judgment
| WrongCaseInfo of inductive * case_info
@@ -70,7 +70,7 @@ val error_assumption : env -> unsafe_judgment -> 'a
val error_reference_variables : env -> constr -> 'a
val error_elim_arity :
- env -> inductive -> constr list -> constr
+ env -> inductive -> types list -> constr
-> unsafe_judgment -> (constr * constr * string) option -> 'a
val error_case_not_inductive : env -> unsafe_judgment -> 'a