referenceUtil: fix matchesTarget for import alias

#KT-30012 Fixed
#KT-30432 Fixed
#KT-30736 Fixed
This commit is contained in:
Dmitry Gridin
2019-10-11 20:38:16 +07:00
parent 348d2376b1
commit 20eb3fb492
8 changed files with 85 additions and 28 deletions
@@ -0,0 +1,7 @@
// WITH_RUNTIME
import kotlin.collections.List as <info descr="null">~List1</info>
fun main() {
val a: <info descr="null">List1</info><Int>
val b = <info descr="null">List1</info>(5) { 42 }
}