// SIBLING: fun foo() { val a: Int val b = i() a = 2 println(a + b) } private fun i(): Int { val a: Int val b = 10 val c: Int = 1 return b }