Files
kotlin-fork/idea/testData/intentions/loopToCallChain/contains4.kt
T
Valentin Kipyatkov 834fe9d535 Supported contains()
2016-08-16 17:38:10 +03:00

10 lines
202 B
Kotlin
Vendored

// WITH_RUNTIME
// INTENTION_TEXT: "Replace with 'contains()'"
fun foo(list: List<String>): Int {
<caret>for (s in list) {
if (s == "a") {
return 1
}
}
return 0
}