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(){}