ocaml-containers/tests/core/compat/t_compat.ml
Simon Cruanes adb47f6c49
reformat
2022-07-03 00:02:27 -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)