summaryrefslogtreecommitdiff
path: root/testsuite/tests/typing-recmod/t03ok.ml
blob: 94e4a09f322989f83dee652a742bc322e4e7d571 (plain)
1
2
3
4
5
6
7
8
9
10
(* TEST
 flags = " -w -a ";
 setup-ocamlc.byte-build-env;
 ocamlc.byte;
 check-ocamlc.byte-output;
*)

(* 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;;