Signature help appears for `M.f`: ```ocaml module M : sig val f : int -> unit end = struct let f (_ : int) = () end let () = M.f 5 ``` Signature help does not appear for `M.f`: ```ocaml type t = int -> unit module M : sig val f : t end = struct let f (_ : int) = () end let () = M.f 5 ```