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
}
}
}