Files
kotlin-fork/nj2k/testData/newJ2k/rawGenerics/kt-540-map.kt
T
Ilya Kirillov f950a0246c New J2K: handle correctly short names which are imported by default in kotlin (like List or Result)
Kotlin default import inserter was unable to correctly insert such imports

#KT-34165 fixed
2019-10-04 15:17:35 +03:00

11 lines
255 B
Kotlin
Vendored

package demo
import java.util.HashMap
internal class Test {
fun main() {
val commonMap = HashMap<String, Int>()
val rawMap: HashMap<*, *> = HashMap<String, Int>()
val superRawMap: HashMap<*, *> = HashMap<Any?, Any?>()
}
}