9 lines
121 B
Plaintext
Vendored
9 lines
121 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
fun foo() {
|
|
val list = 1..4
|
|
|
|
list.forEach { x ->
|
|
// comment
|
|
var v = x + 1
|
|
}
|
|
} |