I try to add @see in Kotlin on overload methods, but it can't assign arguments in [].
/**
 * @see [hello(name)] ???
 */
fun hello() {
  ...
}
fun hello(val name:String) {
}
I try to add @see in Kotlin on overload methods, but it can't assign arguments in [].
/**
 * @see [hello(name)] ???
 */
fun hello() {
  ...
}
fun hello(val name:String) {
}