Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6330def4271b547b5c7db5f9759e387de2908e94
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
smartCasts
/
lambdaDeclaresAndModifiesInLoop.fir.kt
blob: 60e5cb8c9c756903b833f6e6040c8f4b25a73a0f [
file
]
// !DIAGNOSTICS: -UNUSED_PARAMETER
fun foo
(
arg
:
Int
?)
{
run
{
var
x
=
arg
while
(
x
!=
null
)
{
x
=
x
.
hashCode
()
if
(
x
==
0
)
x
=
null
}
}
}