blob: 6f7f078dfcf59ae4f7625acf37b8a87d9673736d [file] [log] [blame]
// WITH_RUNTIME
fun foo() {
// check that original formatting of "x+1" and "1 .. 4" is preserved
(1 .. 4).forEach { x ->
x
x+1
}
}