13 lines
204 B
Plaintext
Vendored
13 lines
204 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
fun foo() {
|
|
val list = 1..4
|
|
|
|
list.forEach { x ->
|
|
// start of loop
|
|
// comment 1
|
|
var v = x + 1
|
|
// comment 2
|
|
v++
|
|
// end of loop
|
|
}
|
|
} |