Files
kotlin-fork/idea/testData/completion/basic/common/extensions/MemberExtensionFromWith.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
106 B
Kotlin

class X {
fun String.f() {}
}
fun fn() {
with (X()) {
"sss".<caret>
}
}
// EXIST: f