Files
kotlin-fork/idea/testData/intentions/loopToCallChain/contains3.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>) {
var v = false
<caret>for (s in list) {
if (s == "a") {
v = true
}
}
}