Files
kotlin-fork/idea/testData/refactoring/introduceVariable/FunctionLiteralWithExtraArgs.kt
T
2016-01-22 05:54:38 +03:00

4 lines
124 B
Kotlin
Vendored

// WITH_RUNTIME
fun foo(c : Collection<String>){
c.filterTo(ArrayList<String>())<selection>{ it.length > 1 }</selection>
}