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

16 lines
253 B
Kotlin
Vendored

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