// FIR_IDENTICAL fun main() { var p: String? var block: () -> Int = { 1 } p = "2" run { block = { p.length } } p = null block() }