10 lines
192 B
Kotlin
Vendored
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
|
|
} |