Files
kotlin-fork/idea/testData/codeInsight/moveUpDown/expressions/multilineExpressionWithClosure2.kt
T
2018-03-05 16:10:59 +03:00

9 lines
100 B
Kotlin
Vendored

// MOVE: up
fun test() {
(0..10)
.map {
it
}
<caret>println()
}