blob: 61e430dd75f1734d8a135015d8b969d5716ed87d [file]
// FIR_IDENTICAL
// SKIP_TXT
class A {
lateinit var m: Map<String, Int>
@ExperimentalStdlibApi
fun foo(xs: Collection<List<String>>) {
m = buildMap {
// flatMap calls might be completed on early phase
for (x in xs.flatMap { it.toList() }) {
put(x, x.length)
}
}
}
}