summaryrefslogtreecommitdiff
path: root/testsuite/tests/typing-modules-bugs/pr5164_ok.ml
blob: af34ebbcceb68d6387a92b86813afc4b041e290a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(* TEST
 flags = " -w -a ";
 setup-ocamlc.byte-build-env;
 ocamlc.byte;
 check-ocamlc.byte-output;
*)

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