Files
kotlin-fork/idea/testData/intentions/loopToCallChain/range.kt.after
T
2016-08-16 17:38:11 +03:00

8 lines
134 B
Plaintext
Vendored

// WITH_RUNTIME
import java.util.*
fun foo(): List<Int> {
val <caret>result = (1..10).filter { it % 3 == 0 }
return result
}