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

11 lines
220 B
Kotlin
Vendored

// WITH_RUNTIME
// INTENTION_TEXT: "Replace with 'contains()'"
fun foo(list: List<String>) {
var v = true
<caret>for (s in list) {
if (s == "a") {
v = false
break
}
}
}