ocaml/testsuite/tests/typing-recmod/t06ok.ml

4 lines
155 B
OCaml

(* 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;;