Files
kotlin-fork/idea/testData/intentions/convertToForEachFunctionCall/binaryExpressionLoopRange.kt.after
T
Mikhail Glukhikh bec28c8388 Replace with for-each: add new-lines using comment saver
Related to KT-15858
2018-02-28 11:29:44 +03:00

6 lines
78 B
Plaintext
Vendored

// WITH_RUNTIME
fun main() {
1.rangeTo(2).forEach { x ->
x
}
}