blob: 8e5001661741ff89020a67653b54a205384fe273 [file] [log] [blame]
package test
import java.util.HashMap
class TestPrimitiveFromMap {
fun foo(map: HashMap<String?, Int?>): Int {
return map["zzz"]!!
}
}