Files
kotlin-fork/idea/testData/intentions/loopToCallChain/flatMap_notIterable.kt
T
2016-08-16 17:37:55 +03:00

10 lines
197 B
Kotlin
Vendored

// WITH_RUNTIME
// IS_APPLICABLE: false
fun foo(list: List<String>): Char? {
<caret>for (s in list) {
for (c in s) {
if (c != ' ') return c
}
}
return null
}