Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/lambdaUsesOwnerModifies.fir.kt
T

10 lines
192 B
Kotlin
Vendored

// !DIAGNOSTICS: -UNUSED_PARAMETER
fun foo(arg: Int?) {
var x = arg
if (x == null) return
run {
// Safe: since `run` is in-place
x.hashCode()
}
x = null
}