Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
intentions
/
convertToForEachFunctionCall
/
blockCommentOnly.kt
blob: ee40ed3ae47a8faca086528734c751c7084c36a1 [
file
] [
log
] [
blame
]
// WITH_RUNTIME
fun foo
()
{}
fun test
()
{
<caret>
for
(
l
in
listOf
(
1
,
2
))
{
/* comment */
}
}