3 lines
62 B
Kotlin
Vendored
3 lines
62 B
Kotlin
Vendored
fun test1(a: Any?) = a!!
|
|
|
|
fun test2(a: Any?) = a?.hashCode()!! |