type Db<'a> = { Save : 'a -> unit } // <=!!! let mock = { Db.Save = fun (x:string) -> printfn $"{x} is saved" } mock.Save "ok"