15 lines
220 B
Plaintext
15 lines
220 B
Plaintext
// WITH_RUNTIME
|
|
// SIBLING:
|
|
fun foo() {
|
|
val (a, b) =
|
|
if (true) {
|
|
unit()
|
|
1 to 2
|
|
} else {
|
|
2 to 3
|
|
}
|
|
}
|
|
|
|
private fun unit() {
|
|
1 + 1
|
|
} |