Files
kotlin-fork/compiler/testData/codegen/box/inference/builderInference/kt47052.kt
T
2021-12-15 22:23:04 +03:00

12 lines
326 B
Kotlin
Vendored

// WITH_STDLIB
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"
}