summaryrefslogtreecommitdiff
path: root/testsuite/tests/typing-recmod/t08bad.ml
blob: 7df3d4760973148b6b07afa027d32b7955a8ce3f (plain)
1
2
3
4
5
(* Bad (not regular) *)
module rec A : sig type 'a t = <m: 'a list B.t; n: 'a array B.t> end
             = struct type 'a t = <m: 'a list B.t; n: 'a array B.t> end
       and B : sig type 'a t = 'a A.t end = struct type 'a t = 'a A.t end;;