Files
kotlin-fork/idea/testData/refactoring/introduceVariable/FunctionLiteralWithExtraArgs.kt
T
2014-12-23 20:43:15 +03:00

4 lines
126 B
Kotlin
Vendored

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