mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 08:31:31 +00:00
10 lines
206 B
Kotlin
Vendored
10 lines
206 B
Kotlin
Vendored
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()
|
|
} |