blob: 3dc776957abf257b5cc4a51faf49c74c60194285 [file]
// DIAGNOSTICS: -UNUSED_PARAMETER
fun foo(arg: Int?) {
run {
var x = arg
while (x != null) {
x = x.hashCode()
if (x == 0) x = null
}
}
}