Errors.Type_lThis module contains the type of errors linked to types in lambda-terms.
type t = | AlreadyDefinedVar of string| NotDefinedVar of string| NotDefinedConst of string| NotWellTypedTerm of string * string| NotWellTypedTermPlus of string * string * string| NotWellKindedType of string| NonLinearVar of string| LinearVar of string| IsUsed of string * string| TwoOccurrencesOfLinearVariable of UtilsLib.Error.pos| NonEmptyContext of string * UtilsLib.Error.pos * UtilsLib.Error.pos * string| NotNormal| VacuousAbstraction of string * UtilsLib.Error.pos| Otherval pp : Stdlib.Format.formatter -> t -> unit