summaryrefslogtreecommitdiffstats
path: root/testsuite/tests/tool-ocamldoc/t01.ml
blob: ee291b900b64f827884e23ca91d3b5bb290459e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
(** Testing display of types.

   @test_types_display
 *)

let x = 1


module M = struct
  let y = 2

end

module type MT = sig
  type t = string -> int -> string -> (string * string * string) ->
    (string * string * string) ->
      (string * string * string) -> unit
  val y : int

  type obj_type =
     < foo : int ; bar : float -> string ; gee : int -> (int * string) >
end