Files
kotlin-fork/idea/testData/intentions/convertForEachToForLoop/explicitFunctionLiteral.kt.after
T
2015-04-16 22:00:54 +03:00

8 lines
82 B
Plaintext
Vendored

// WITH_RUNTIME
fun foo() {
val x = 1..4
for (y in x) {
y
}
}