Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
smartCasts
/
ownerDeclaresBothModifies.fir.kt
blob: 641fd88d3a69a37373c42db3ad394ad80f878fb4 [
file
]
// DIAGNOSTICS: -UNUSED_PARAMETER
fun foo
(
arg
:
Int
?)
{
var
x
=
arg
if
(
x
==
null
)
return
run
{
// Stable because `run` is in-place
x
.
hashCode
()
x
=
null
}
if
(
x
!=
null
)
x
=
42
// Unsafe because of lambda
x
<!
UNSAFE_CALL
!>.<!>
hashCode
()
}