e04c6d1f5c
#KT-12299 Fixed
10 lines
139 B
Kotlin
Vendored
10 lines
139 B
Kotlin
Vendored
interface Z {
|
|
companion object {
|
|
val instance: Z? = null
|
|
}
|
|
}
|
|
|
|
fun foo(): Z? = Z<caret>
|
|
|
|
// ORDER: instance
|
|
// ORDER: object |