dff6e943bb
Dex issue: https://issuetracker.google.com/issues/68796377 #KT-20844 Fixed
9 lines
214 B
Kotlin
Vendored
9 lines
214 B
Kotlin
Vendored
//WITH_RUNTIME
|
|
|
|
fun foo(x: String, ys: List<String>) =
|
|
x + ys.fold("", { a, b -> a + b })
|
|
|
|
var flag = true
|
|
|
|
fun box(): String =
|
|
foo("O", if (flag) listOf("k").map { it.toUpperCase() } else listOf()) |