Files
kotlin/idea/idea-completion/testData/basic/common/primitiveCompletion/classFieldsAndFunctionsFromInnerClassExplicitReceiver.kt
Roman Golyshev 0f6ddc1f29 Iterate on symbols, not on scopes
- This way it is easier to get the correct results
2020-07-07 19:32:10 +03:00

18 lines
227 B
Kotlin
Vendored

class A {
fun aa() {}
val aaa = 10
inner class AA {
fun bb() {}
val bbb = 20
fun test() {
this.<caret>
}
}
}
// ABSENT: aa
// ABSENT: aaa
// EXIST: bb
// EXIST: bbb