298a075381
Removed declaration for functions: TODO, run, with, apply, let.
10 lines
227 B
Kotlin
Vendored
10 lines
227 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
fun foo(arg: Int?) {
|
|
var x = arg
|
|
if (x == null) return
|
|
run {
|
|
// Not safe: x = null later in the owner
|
|
<!SMARTCAST_IMPOSSIBLE!>x<!>.hashCode()
|
|
}
|
|
x = null
|
|
} |