odoc icon indicating copy to clipboard operation
odoc copied to clipboard

Unable to refer to some elements in unapplied functors

Open jonludlam opened this issue 3 years ago • 1 comments

For example:

module X : functor ( Y : sig type t end ) -> sig
	module Z = Y
end

(** {!X.Z.t} *)

jonludlam avatar Jun 23 '22 08:06 jonludlam

Note this currently resolves:

module X : functor ( Y : sig type t end ) -> sig
  type t = Y.t
end

(** {!X.t} *)

Julow avatar Mar 30 '23 13:03 Julow