ocaml/test/Moretest/recmod/15bad.ml

4 lines
122 B
OCaml

(* Bad - PR 4512 *)
module type S' = sig type t = int end
module rec M : S' with type t = M.t = struct type t = M.t end;;