4 lines
124 B
Kotlin
Vendored
4 lines
124 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
fun foo(c : Collection<String>){
|
|
c.filterTo(ArrayList<String>())<selection>{ it.length > 1 }</selection>
|
|
} |