Fixed smart completion of functions with "::"

#KT-6073 Fixed
This commit is contained in:
Valentin Kipyatkov
2014-10-20 16:13:07 +04:00
parent f2a83cdf29
commit e6dbfac232
7 changed files with 92 additions and 4 deletions
@@ -0,0 +1,13 @@
class C {
fun foo(p: C.() -> Unit){}
fun bar() {
foo(<caret>)
}
fun f1(){}
fun C.f2(){}
}
// EXIST: ::f1
// ABSENT: ::f2