Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
smartCasts
/
lambdaUsesOwnerModifies.fir.kt
blob: 24c3fe5c297aef096bdd4836ae05a71414827b41 [
file
]
// 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
}