我想定义以下模块层次结构,但它不起作用:
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
出现错误?
答案 0 :(得分:5)
=
之后的类型应该在您尝试包含/修改的模块之外可用。
在这里,你会这样做:
module type C = sig
type u
include B with type u := u and type t = u list
end