11 lines
153 B
Kotlin
Vendored
11 lines
153 B
Kotlin
Vendored
fun test(a: Any?) {
|
|
if (a == null) return
|
|
a.hashCode()
|
|
|
|
val b = a
|
|
b.hashCode()
|
|
|
|
val c: Any? = a
|
|
c<!UNSAFE_CALL!>.<!>hashCode()
|
|
}
|