Merge commit 'ocaml3102'
[ocaml.git] / test / ocamldoc / t1.ml
blob6caf3d7afcd0f582e42f50ea92cf6c67e33ea79c
1 (** Testing display of types.
3 @test_types_display
4 *)
6 let x = 1
9 module M = struct
10 let y = 2
12 end
14 module type MT = sig
15 type t = string -> int -> string -> (string * string * string) ->
16 (string * string * string) ->
17 (string * string * string) -> unit
18 val y : int
19 end