show ocaml array type concretely in Make sig

This commit is contained in:
Carmelo Piccione 2016-07-09 10:59:01 -04:00
parent 9a2dd29615
commit 3c6f77b67a

View file

@ -210,4 +210,4 @@ module Byte : S with module Array = Array.Byte
module MakeFromArray(A : Array.S) : S with module Array = A
(** Buffer using regular arrays *)
module Make(X : sig type t end) : S with type Array.elt = X.t
module Make(X : sig type t end) : S with type Array.elt = X.t and type Array.t = X.t array