Files
kotlin-fork/j2k/testData/fileOrElement/rawGenerics/kt-540-map.kt
T

12 lines
271 B
Kotlin
Vendored

// ERROR: Not enough information to infer type variable K
package demo
import java.util.HashMap
internal class Test {
fun main() {
val commonMap = HashMap<String, Int>()
val rawMap = HashMap<String, Int>()
val superRawMap = HashMap()
}
}