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