// WITH_RUNTIME // SIBLING: fun foo() { val (a, b) = pair() println(a + b) } private fun pair(): Pair { val a = 1 val b = 2 return Pair(a, b) }