367b84d45e
^KTIJ-25995
17 lines
231 B
Kotlin
Vendored
17 lines
231 B
Kotlin
Vendored
// FILE: ClassWithCompanion.kt
|
|
package bar
|
|
|
|
class ClassWithCompanion {
|
|
companion object {
|
|
fun foo() { }
|
|
}
|
|
}
|
|
|
|
// FILE: main.kt
|
|
import bar.ClassWithCompanion
|
|
|
|
/**
|
|
* [ClassWithCompanion.f<caret>oo]
|
|
*/
|
|
fun test() { }
|