9 lines
123 B
Plaintext
9 lines
123 B
Plaintext
// WITH_RUNTIME
|
|
// SIBLING:
|
|
fun foo() {
|
|
val (a, b) = pair()
|
|
}
|
|
|
|
private fun pair(): Pair<Int, Int> {
|
|
return 1 to 2
|
|
} |