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