diff options
Diffstat (limited to 'typing/subst.ml')
-rw-r--r-- | typing/subst.ml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/typing/subst.ml b/typing/subst.ml index c5c3efe9d0..25f557ec52 100644 --- a/typing/subst.ml +++ b/typing/subst.ml @@ -178,7 +178,8 @@ let type_declaration s decl = let class_signature s sign = { cty_self = typexp s sign.cty_self; - cty_vars = Vars.map (function (m, t) -> (m, typexp s t)) sign.cty_vars; + cty_vars = + Vars.map (function (m, v, t) -> (m, v, typexp s t)) sign.cty_vars; cty_concr = sign.cty_concr; cty_inher = List.map (fun (p, tl) -> (type_path s p, List.map (typexp s) tl)) |