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

12 lines
147 B
Kotlin

class C(val x: X) {
val foo: String
get() = x.<caret>
}
class X {
val s = ""
fun getFoo() = ""
}
// ORDER: getFoo, s, toString