Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
convertToForEachFunctionCall
/
blockBodyExpression.kt
blob: f8fc45fb0188cf0b19cb8d5c4301b0222a914710 [
file
] [
log
] [
blame
]
// WITH_RUNTIME
fun foo
()
{
// check that original formatting of "x+1" and "1 .. 4" is preserved
<caret>
for
(
x
in
1
..
4
)
{
x
x
+
1
}
}