summaryrefslogtreecommitdiff
path: root/testsuite/tests/typing-recmod/t06ok.ml
blob: c39b0fa99a56919c9e0bb90b5207725ea3c3785a (plain)
1
2
3
4
5
6
7
8
9
10
(* TEST
 flags = " -w -a ";
 setup-ocamlc.byte-build-env;
 ocamlc.byte;
 check-ocamlc.byte-output;
*)

(* OK (t = <m:t>) *)
module rec A : sig type t = <m:B.t> end = struct type t = <m:B.t> end
       and B : sig type t = A.t end = struct type t = A.t end;;