8 lines
141 B
Kotlin
Vendored
8 lines
141 B
Kotlin
Vendored
fun test(b: Boolean): Int {
|
|
<expr>val (one, two) = b to !b</expr>
|
|
return if (one && two) {
|
|
54
|
|
} else {
|
|
45
|
|
}
|
|
} |