aboutsummaryrefslogtreecommitdiff
path: root/core/testdata/format/referenceLink.kt
blob: c6550f0447676204e8f4b53289d12e83df87cc09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package example

/**
 * It is link to [example other func][example]
 *
 * Sure, it is [example]
 *
 * [example]: example.someOtherFunc
 */
fun a() {

}

fun someOtherFunc() {

}