blob: 37f75ba764c8eea7638a32ea2176efb6ecae4ca0 [file] [log] [blame]
// WITH_RUNTIME
fun foo() {
val list = 1..4
val i = 0
list.forEach { i ->
i
}
i
}