KDoc questions

When using kdoc identifier links, how do you specify which overload to use?

/** * Set with [x(Int)] */ fun x() fun x(value:Int)

As the doc says, there is currently no syntax for disambiguating overloads. Our documentation generation tool puts all overloads on the same page, so there is no way to link to a specific method signature in the generated documentation.

Could be nice to be able to specify which overload is targeted from KDoc, especially when refering to a speicific overload of a Java method.