Fixed KT-5611 Completion doesn't include not imported extensions for implicit receiver

#KT-5611 Fixed
This commit is contained in:
Valentin Kipyatkov
2014-10-08 12:17:20 +04:00
parent 22c80d2694
commit a124827c4e
8 changed files with 104 additions and 35 deletions
@@ -0,0 +1,9 @@
// "Import" "true"
// ERROR: Unresolved reference: someFun
package testingExtensionFunctionsImport
import testingExtensionFunctionsImport.data.someFun
fun String.some() {
<caret>someFun()
}
@@ -0,0 +1,7 @@
// "Import" "true"
// ERROR: Unresolved reference: someFun
package testingExtensionFunctionsImport
fun String.some() {
<caret>someFun()
}
@@ -0,0 +1,4 @@
package testingExtensionFunctionsImport.data
fun String.someFun() {
}