Module Functor_test.EitherString

module EitherString: Either(sig
type t = string 
end)

type 'a t = 
| Left of Config.t
| Right of 'a
val fmap : ('a -> 'b) -> 'a t -> 'b t