Files
kotlin-fork/idea/idea-completion/testData/weighers/smart/StaticMemberAndPrefix.kt
T

10 lines
139 B
Kotlin
Vendored

interface Z {
companion object {
val instance: Z? = null
}
}
fun foo(): Z? = Z<caret>
// ORDER: instance
// ORDER: object