mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
10 lines
206 B
Kotlin
10 lines
206 B
Kotlin
fun test(a: Any?) {
|
|
if (a == null) return
|
|
<!DEBUG_INFO_SMARTCAST!>a<!>.hashCode()
|
|
|
|
val b = a
|
|
<!DEBUG_INFO_SMARTCAST!>b<!>.hashCode()
|
|
|
|
val c: Any? = a
|
|
c<!UNSAFE_CALL!>.<!>hashCode()
|
|
} |