mte/unikernel/duniverse/base/test/map_full_interface/test_poly.ml
2025-11-11 02:07:51 +01:00

15 lines
356 B
OCaml

open! Base
include Test_poly_intf.Definitions
include (Base.Map.Poly : S)
let%expect_test "[Base.Map.Poly] creators/accessors" =
let open
Functor.Test_creators_and_accessors (Types) (Base.Map.Poly)
(struct
include Functor.Instance (Comparator.Poly)
let create x = x
let access x = x
end) in
[%expect {| |}]
;;