Files
kotlin-fork/idea/testData/completion/basic/common/ObjectMembersFromNested.kt
T
Valentin Kipyatkov 311a3a75c8 Code completion: do not list instance members from context with no instance
#KT-6388 Fixed
 #KT-4422 Fixed
 #KT-5516 Fixed
2014-12-22 18:26:03 +03:00

12 lines
121 B
Kotlin

object O {
fun foo() {}
class Nested {
fun bar() {
<caret>
}
}
}
// EXIST: foo