mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-06 03:05:28 -05:00
6 lines
190 B
OCaml
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)
|