Files
kotlin-fork/idea/testData/intentions/convertToForEachFunctionCall/blockBodyExpression.kt.after
T
2015-05-14 01:00:24 +03:00

7 lines
142 B
Plaintext
Vendored

fun foo() {
// check that original formatting of "x+1" and "1 .. 4" is preserved
(1 .. 4).forEach { x ->
x
x+1
}
}