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

3 lines
100 B
OCaml

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