Files
kotlin-fork/idea/testData/intentions/convertForEachToForLoop/simple.kt.after
T
2018-05-03 17:54:56 +03:00

8 lines
101 B
Plaintext
Vendored

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