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

10 lines
219 B
Plaintext
Vendored

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