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

8 lines
148 B
Plaintext
Vendored

// WITH_RUNTIME
import java.util.ArrayList
fun foo(array: IntArray): List<Int> {
val result = array.filter { it % 3 == 0 }
return result
}