54483dbb95
#KT-6118 Fixed
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()
|
|
} |