summaryrefslogtreecommitdiff
path: root/testsuite/tests/tool-ocamldoc/Extensible_variant.ml
blob: f459fa276b7e052d0ff00179b0f53012c7cbed3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
(* TEST
   * ocamldoc with latex
*)

(** Testing display of extensible variant types and exceptions.

   @test_types_display
 *)

(** Also check reference for {!M.A}, {!M.B}, {!M.C} and {!E} *)

(** Extensible type *)
type e = ..

module M = struct
  type e +=
  | A (** A doc *)
  | B (** B doc *)
  | C (** C doc *)
end

module type MT = sig
  type e +=
  | A (** A doc *)
  | B (** B doc *)
  | C (** C doc *)
end

exception E