mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 00:21:32 +00:00
11 lines
208 B
Kotlin
Vendored
11 lines
208 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
// SIBLING:
|
|
fun foo() {
|
|
val (a, b) =
|
|
if (true) {
|
|
<selection>1 + 1</selection>
|
|
1 to 2
|
|
} else {
|
|
2 to 3
|
|
}
|
|
} |