Files
kotlin-fork/idea/idea-completion/testData/basic/common/shadowing/PreferMemberToGlobal.kt
T
2015-06-15 18:27:21 +03:00

13 lines
195 B
Kotlin
Vendored

val xxx: Int get() = 1
class C {
fun foo() {
xx<caret>
}
val xxx: String get() = 1
}
// EXIST: { lookupString: "xxx", itemText: "xxx", typeText: "String" }
// NOTHING_ELSE