summaryrefslogtreecommitdiff
path: root/testsuite/tests/typing-recmod/t06ok.ml
blob: a0cfebdbc2dcdc9e6a71cffdb8bea22aa4a83936 (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;;