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