flatMapTo supported
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
// WITH_RUNTIME
|
||||
fun foo(list: List<String>, target: MutableList<String>) {
|
||||
<caret>for (s in list) {
|
||||
for (line in s.lines()) {
|
||||
target.add(line)
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user