Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
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
}
}