blob: ea0ddbef8f5e0979819b9de1c603e4d302bd0810 [file]
fun trans(n: Int, f: () -> Boolean) = if (f()) n else null
fun foo() {
var i: Int? = 5
if (i != null) {
// Write is AFTER this place
<!DEBUG_INFO_SMARTCAST!>i<!>.hashCode()
object {
fun bar() {
i = null
}
}.bar()
<!SMARTCAST_IMPOSSIBLE!>i<!>.hashCode()
}
}