aboutsummaryrefslogtreecommitdiffhomepage
path: root/pretyping/typeclasses.ml
diff options
context:
space:
mode:
authorGravatar Hugo Herbelin <Hugo.Herbelin@inria.fr>2017-06-27 11:31:02 +0200
committerGravatar Hugo Herbelin <Hugo.Herbelin@inria.fr>2017-06-28 12:31:11 +0200
commitd01e3b07470ab326f5754332ac812f21794721bc (patch)
tree0a6c2db31cd1987f6ef18633974c6c20148b00dd /pretyping/typeclasses.ml
parentebfed8fc20c6cad1eddd5057d191905b42630b4e (diff)
A fix for #5598 (no discharge of Existing Classes referring to local variables).
Diffstat (limited to 'pretyping/typeclasses.ml')
-rw-r--r--pretyping/typeclasses.ml3
1 files changed, 3 insertions, 0 deletions
diff --git a/pretyping/typeclasses.ml b/pretyping/typeclasses.ml
index 24a381179..0ad940aca 100644
--- a/pretyping/typeclasses.ml
+++ b/pretyping/typeclasses.ml
@@ -98,6 +98,8 @@ let new_instance cl info glob poly impl =
if glob then Some (Lib.sections_depth ())
else None
in
+ if match global with Some n -> n>0 && isVarRef impl | _ -> false then
+ CErrors.user_err (Pp.str "Cannot set Global an instance referring to a section variable.");
{ is_class = cl.cl_impl;
is_info = info ;
is_global = global ;
@@ -358,6 +360,7 @@ let discharge_instance (_, (action, inst)) =
match inst.is_global with
| None -> None
| Some n ->
+ assert (not (isVarRef inst.is_impl));
Some (action,
{ inst with
is_global = Some (pred n);