fun foo() { val a = 1 // SIBLING: fun b1() = a > 0 if (b1()) { fun b(): Int { return 0 } println(b()) } }