9 lines
151 B
Kotlin
Vendored
9 lines
151 B
Kotlin
Vendored
package test
|
|
|
|
import java.util.HashMap
|
|
|
|
class TestPrimitiveFromMap {
|
|
fun foo(map: HashMap<String, Int?>): Int {
|
|
return map["zzz"]!!
|
|
}
|
|
} |