aboutsummaryrefslogtreecommitdiff
path: root/core/testdata/javadoc/paramlink.kt
blob: 48972a22d78556f2eafcda0c3375ae17b3da736d (plain)
1
2
3
4
5
6
7
8
9
10
package demo

/**
 * You can [eat] it or cut it into slices using [cutIntoPieces]
 */
interface Apple {
    fun eat()

    fun cutIntoPieces(pieces: Int)
}