android13/external/dokka/core/testdata/javadoc/paramlink.kt

11 lines
156 B
Kotlin

package demo
/**
* You can [eat] it or cut it into slices using [cutIntoPieces]
*/
interface Apple {
fun eat()
fun cutIntoPieces(pieces: Int)
}