124a14c8df
^KT-47052 Fixed ^KT-47082 Fixed
12 lines
361 B
Kotlin
Vendored
12 lines
361 B
Kotlin
Vendored
// DONT_TARGET_EXACT_BACKEND: WASM
|
|
// WITH_RUNTIME
|
|
|
|
public inline fun <R, C : MutableCollection<in R>> flatMapTo1(destination: C, transform: (List<String>) -> Iterable<R>) {}
|
|
|
|
@OptIn(ExperimentalStdlibApi::class)
|
|
fun box(): String {
|
|
buildSet { // NEW_INFERENCE_NO_INFORMATION_FOR_PARAMETER is reported
|
|
flatMapTo1(this) { it }
|
|
}
|
|
return "OK"
|
|
} |