blob: dc91445b90cbc881459b867ccb3668737311739e [file]
// DIAGNOSTICS: -UNUSED_PARAMETER
fun foo(arg: Int?) {
run {
var x = arg
if (x == null) return@run
x.hashCode()
}
}