aboutsummaryrefslogtreecommitdiff
path: root/core/testdata/format/companionImplements.kt
blob: 154ef9b1c69f2cf818aef5828242cc9e1fea5ad6 (plain)
1
2
3
4
5
6
7
8
9
interface Bar

/**
 * Correct ref [Foo.Companion]
 */
class Foo {
    companion object : Bar
}