ocaml-containers/tests/core/compat/t_compat.ml
Simon Cruanes 10865eaced reformat
2022-07-04 13:36:06 -04:00

6 lines
190 B
OCaml

(* test consistency of interfaces *)
module type L = module type of CCEqual
module type LL = module type of CCEqualLabels;;
ignore (module CCEqualLabels : L);;
ignore (module CCEqual : LL)