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

6 lines
169 B
Plaintext
Vendored

// WITH_RUNTIME
// INTENTION_TEXT: "Replace with 'lastIndexOf()'"
// IS_APPLICABLE_2: false
fun foo(list: List<String>) {
val <caret>result = list.lastIndexOf("a")
}