summaryrefslogtreecommitdiff
path: root/testsuite/tests/typing-modules-bugs/pr5164_ok.ml
blob: 9d8e57151948984b3dcccb855893fe4a5ab9efb9 (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