KT-2849 Object that are not imported do not show up in completion

#KT-2849 Fixed
This commit is contained in:
Nikolay Krasko
2012-11-09 14:33:45 +04:00
parent cb602496e3
commit aca747390b
15 changed files with 181 additions and 18 deletions
@@ -0,0 +1,7 @@
package some
import test.SomeTestObject
fun test() {
SomeTestObject<caret>
}
@@ -0,0 +1,3 @@
package test
object SomeTestObject
@@ -0,0 +1,7 @@
package some
import test.SomeTestObject
fun test() {
SomeTestObject<caret>
}