483da9607c
#KT-4893 Fixed
20 lines
379 B
Kotlin
Vendored
20 lines
379 B
Kotlin
Vendored
package ppp
|
|
|
|
interface I
|
|
|
|
class C : I {
|
|
fun foo() {
|
|
xx<caret>
|
|
}
|
|
}
|
|
|
|
val Any.xxx: Int get() = 1
|
|
val I.xxx: Int get() = 1
|
|
|
|
fun Any.xxx() = 1
|
|
fun C.xxx() = 1
|
|
|
|
// EXIST: { lookupString: "xxx", itemText: "xxx", tailText: " for I in ppp", typeText: "Int" }
|
|
// EXIST: { lookupString: "xxx", itemText: "xxx", tailText: "() for C in ppp", typeText: "Int" }
|
|
// NOTHING_ELSE
|