blob: d27430730c25f633c0bd497d30ab9b9e0c694b83 [file] [log] [blame]
// WITH_RUNTIME
fun foo() {
val list = 1..4
<caret>for (x in list) {
// comment
var v = x + 1
}
}