Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
intentions
/
convertToForEachFunctionCall
/
blockBodyExpression.kt.after
blob: 6f7f078dfcf59ae4f7625acf37b8a87d9673736d [
file
] [
log
] [
blame
]
// WITH_RUNTIME
fun foo
()
{
// check that original formatting of "x+1" and "1 .. 4" is preserved
(
1
..
4
).
forEach
{
x
->
x
x
+
1
}
}