Files
kotlin-fork/idea/testData/completion/smart/FunctionReference8.kt.todo
T
Valentin Kipyatkov e6dbfac232 Fixed smart completion of functions with "::"
#KT-6073 Fixed
2014-10-22 15:42:36 +04:00

12 lines
132 B
Plaintext

fun foo(p: String.() -> Unit){}
fun bar() {
foo(<caret>)
}
fun String.f1(){}
fun f2(){}
// EXIST: String::f1
// ABSENT: ::f2