module Min_Fail = struct
type t = (int, int, Int.comparator_witness) Map.t
[@@deriving sexp]
;;
end
error:
16 | type t = (int, int, Int.comparator_witness) Map.t
^^^^^
Error: Unbound value Map.t_of_sexp
Hint: Did you mean m__t_of_sexp?
I am a little confused by what I am doing wrong. All what I’m trying to do is a minimal example of Map.t w/ deriving sexp.