Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
convertToForEachFunctionCall
/
commentsInBody.kt
blob: 52749e1aa56340b4d4c954b2ca54a0ee2d0ec3ff [
file
] [
log
] [
blame
]
// WITH_RUNTIME
fun foo
()
{
val list
=
1.
.
4
<caret>
for
(
x
in
list
)
{
// start of loop
// comment 1
var
v
=
x
+
1
// comment 2
v
++
// end of loop
}
}