blob: dbcdac133dd2ed0b0b9860b3c6b503372e6a4a76 [file] [log] [blame]
fun foo() {
for (i in 1..10) {
<caret>if (i <= 1) continue
bar()
}
}
fun bar(){}