7 lines
145 B
Kotlin
Vendored
7 lines
145 B
Kotlin
Vendored
fun foo() {
|
|
// check that original formatting of "x+1" and "1 .. 4" is preserved
|
|
<caret>for (x in 1 .. 4) {
|
|
x
|
|
x+1
|
|
}
|
|
} |