user
05/23/2016, 3:21 AM/**
* You ][eat] an [Apple] or you can cut it into slices using [cutIntoPieces]
*/
interface Apple {
fun eat()
fun cutIntoPieces(pieces: Int)
}
Outputs the following:
Can't find node by signature jp.co.rakuten.sdtd.rcos.feed.Apple$cutIntoPieces(kotlin.Int)
While method eat
can be properly resolved, Dokka is unable to resolve cutIntoPieces
(methods with parameters). The generated Javadoc does not contain cross links for methods with parameters.