ocaml/test/Moretest/recmod/03ok.ml

4 lines
145 B
OCaml

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