mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-07 11:45:31 -05:00
9 lines
196 B
OCaml
9 lines
196 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);;
|
|
|