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

14 lines
152 B
Kotlin

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