Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
invertIfCondition
/
addSurroundingBlock_preserveComments.kt
blob: d5b260efa02f55f3ce171fe2495ed407c0c36df9 [
file
] [
log
] [
blame
]
fun foo
(
list
:
List
<
String
>)
{
for
(
s
in
list
)
<caret>
if
(
s
.
length
>
0
/* check it */
)
/* then */
{
bar
()
// bar()
}
}
}
fun bar
(){}