Skip to content

Signature help does not work in the presence of type aliases #1927

Open
@ddickstein

Description

@ddickstein

Signature help appears for M.f:

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:

type t = int -> unit

module M : sig
  val f : t
end = struct
  let f (_ : int) = ()
end

let () = M.f 5

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions