aboutsummaryrefslogtreecommitdiff
path: root/core/testdata/format/inheritedLink.1.kt
blob: 29cc12b483454d8155b587fc885cb4ca9933162e (plain)
1
2
3
4
5
6
7
8
9
10
package p1

import java.util.LinkedList

interface Foo {

    /** Says hello - [LinkedList]. */
    fun sayHello() : String

}