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

6 lines
89 B
Kotlin
Vendored

// WITH_RUNTIME
fun foo() {
val x = "abcd"
x.forEach<caret> { it.equals('a') }
}