Files
kotlin-fork/idea/testData/intentions/loopToCallChain/smartCastRequired3.kt
T
2016-08-16 17:38:10 +03:00

12 lines
227 B
Kotlin
Vendored

// WITH_RUNTIME
// IS_APPLICABLE: false
fun foo(list: List<Any>): String? {
<caret>for (o in list) {
if (bar(o as String)) {
return o
}
}
return null
}
fun bar(s: String): Boolean = true