Files
kotlin-fork/idea/idea-completion/testData/basic/common/shadowing/Locals1.kt
T

17 lines
271 B
Kotlin
Vendored

// FIR_COMPARISON
class C {
val xxx = 1
fun foo(xxx: String) {
val xxx = 'x'
if (true) {
val xxx = true
xx<caret>
}
}
}
// EXIST: { lookupString: "xxx", itemText: "xxx", typeText: "Boolean" }
// NOTHING_ELSE