xref: /aosp_15_r20/external/dokka/core/testdata/javadoc/paramlink.kt (revision 1b2d298c530bf0473cc943e8414a5ff577a994bc)
1 package demo
2 
3 /**
4  * You can [eat] it or cut it into slices using [cutIntoPieces]
5  */
6 interface Apple {
eatnull7     fun eat()
8 
9     fun cutIntoPieces(pieces: Int)
10 }
11