dbb28c571b
Replaces an expression of form x.forEach { … } with for (a in x) { … }.
8 lines
84 B
Plaintext
8 lines
84 B
Plaintext
// WITH_RUNTIME
|
|
fun foo() {
|
|
val x = 1..4
|
|
|
|
for (it in x) {
|
|
it
|
|
}
|
|
} |