Handle kdoc case for Introduce import alias inspection

#EA-210889 Fixed
This commit is contained in:
Vladimir Dolzhenko
2020-01-08 17:31:56 +01:00
parent ffc6786f06
commit f5545b3740
5 changed files with 25 additions and 1 deletions
+3
View File
@@ -0,0 +1,3 @@
HashMap1
UtilHashMap
JavaUtilHashMap
+8
View File
@@ -0,0 +1,8 @@
import java.util.HashMap
/**
* [HashMap] is used
*/
fun x() {
val list = <caret>HashMap<String, String>()
}
+8
View File
@@ -0,0 +1,8 @@
import java.util.HashMap as HashMap1
/**
* [HashMap1] is used
*/
fun x() {
val list = HashMap1<String, String>()
}