summaryrefslogtreecommitdiff
path: root/testsuite/tests/typing-recmod/t02bad.ml
blob: ac9d6390c28e5cbc2171f4073a0e275f5032226c (plain)
1
2
3
4
(* Bad (t = t) *)
module rec A : sig type t = B.t end = struct type t = B.t end
       and B : sig type t = A.t end = struct type t = A.t end;;