ocaml/testsuite/tests/typing-modules-bugs/pr5164_ok.ml

10 lines
182 B
OCaml

module type INCLUDING = sig
include module type of List
include module type of ListLabels
end
module Including_typed: INCLUDING = struct
include List
include ListLabels
end