diff options
| author | Pierre-Marie Pédrot | 2019-02-04 15:18:59 +0100 |
|---|---|---|
| committer | Pierre-Marie Pédrot | 2019-02-04 15:18:59 +0100 |
| commit | d5722a22c9ae4dec43f8c444fbebb1b1072fb686 (patch) | |
| tree | 2b1d2af4154149828cf5d69bad83f6549e670853 /pretyping/pretype_errors.mli | |
| parent | 8e73ceb7b4bdb6a17d039b17fd5e44ceffe255a2 (diff) | |
| parent | 30d0b1052b6351a539558ff1fe16e4f8578c03ba (diff) | |
Merge PR #9144: Fixes #4633: clearer message unknown existential
Ack-by: herbelin
Reviewed-by: ppedrot
Diffstat (limited to 'pretyping/pretype_errors.mli')
| -rw-r--r-- | pretyping/pretype_errors.mli | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pretyping/pretype_errors.mli b/pretyping/pretype_errors.mli index 51103ca194..a0d459fe6b 100644 --- a/pretyping/pretype_errors.mli +++ b/pretyping/pretype_errors.mli @@ -59,6 +59,7 @@ type pretype_error = | NonLinearUnification of Name.t * constr (** Pretyping *) | VarNotFound of Id.t + | EvarNotFound of Id.t | UnexpectedType of constr * constr | NotProduct of constr | TypingError of type_error @@ -155,6 +156,8 @@ val error_not_product : val error_var_not_found : ?loc:Loc.t -> env -> Evd.evar_map -> Id.t -> 'b +val error_evar_not_found : ?loc:Loc.t -> env -> Evd.evar_map -> Id.t -> 'b + (** {6 Typeclass errors } *) val unsatisfiable_constraints : env -> Evd.evar_map -> Evar.t option -> |
