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