KT-13266 Non-imported type aliases do not appear in completion

#KT-13266 Fixed
This commit is contained in:
Valentin Kipyatkov
2016-08-31 20:15:57 +03:00
parent fcce1e3838
commit 50a0f9a4a7
14 changed files with 124 additions and 40 deletions
@@ -0,0 +1 @@
fun foo(): MyAl<caret>
@@ -0,0 +1,5 @@
package test
class MyClass
typealias MyAlias = MyClass
@@ -0,0 +1,3 @@
import test.MyAlias
fun foo(): MyAlias<caret>