Files
kotlin-fork/idea/testData/intentions/convertForEachToForLoop/simpleCharSequence.kt.after
T
2015-12-14 04:29:21 +03:00

8 lines
98 B
Plaintext
Vendored

// WITH_RUNTIME
fun foo() {
val x = "abcd"
for (it in x) {
it.equals('a')
}
}