mte/unikernel/duniverse/base/test/map_full_interface/test_toplevel.ml

16 lines
372 B
OCaml
Raw Normal View History

2025-11-11 02:07:51 +01:00
open! Base
include Test_toplevel_intf.Definitions
include (Base.Map : S)
let%expect_test "[Base.Map] creators/accessors" =
let open
Functor.Test_creators_and_accessors (Types) (Base.Map)
(struct
include Functor.Instance (Int)
let create f = f ((module Int) : _ Comparator.Module.t)
let access x = x
end) in
[%expect {| |}]
;;