Exclude alias imported names from all-under imported packages when determining whether a type has been imported for completion.

#KT-13447 Fixed
This commit is contained in:
Ilya Gorbunov
2016-08-16 18:52:04 +03:00
parent b69661df8f
commit e34bc30bd7
3 changed files with 11 additions and 2 deletions
@@ -2,3 +2,4 @@ package ppp1
class MyClass1
class MyClass2
class MyClass7
@@ -1,5 +1,6 @@
import ppp1.*
import ppp3.MyClass6
import ppp1.MyClass7 as AnotherClass7
val v = My<caret>
@@ -22,3 +23,6 @@ val v = My<caret>
/* not imported */
// ORDER: MyClass4
/* not imported */
// ORDER: MyClass7