Files
kotlin-fork/idea/testData/intentions/convertToForEachFunctionCall/simple.kt
T
2015-12-17 11:11:23 +03:00

8 lines
95 B
Kotlin
Vendored

// WITH_RUNTIME
fun foo() {
val list = 1..4
<caret>for (x in list) {
x
}
}