Files
kotlin-fork/compiler/testData/diagnostics/tests/dataFlow/assignment/assignToNewVal.fir.kt
T
2021-10-20 22:05:24 +03:00

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()
}