Files
kotlin-fork/idea/testData/debugger/sequence/psi/collection/positive/IntermediateIsLastCall.kt
T
2018-08-20 05:17:47 +03:00

3 lines
97 B
Kotlin
Vendored

fun main(args: Array<String>) {
<caret> listOf(1, 2, 3).map { it * it }.filter { it % 2 == 0 }
}