Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
intentions
/
convertToForEachFunctionCall
/
commentsInBody2.kt
blob: d27430730c25f633c0bd497d30ab9b9e0c694b83 [
file
] [
log
] [
blame
]
// WITH_RUNTIME
fun foo
()
{
val list
=
1.
.
4
<caret>
for
(
x
in
list
)
{
// comment
var
v
=
x
+
1
}
}