在OCaml中键入包含模块的约束

时间:2015-02-26 18:27:27

标签: types module include ocaml

我想定义以下模块层次结构,但它不起作用:

module type A = sig
    type t
end

module type B = sig
    type u
    include A
end

module type C = sig
    (* Error: Unbound type constructor u *)
    include B with type t = u list
end

为什么类型u出现错误?

1 个答案:

答案 0 :(得分:5)

=之后的类型应该在您尝试包含/修改的模块之外可用。

在这里,你会这样做:

module type C = sig
  type u 
  include B with type u := u and type t = u list
end