Files
kotlin-fork/idea/testData/intentions/addForLoopIndices/inapplicableOverridenFunction.kt
T
2015-07-21 11:37:19 +03:00

9 lines
129 B
Kotlin
Vendored

// WITH_RUNTIME
// IS_APPLICABLE: FALSE
fun String.withIndex(): Int = 42
fun foo(s: String) {
for (<caret>a in s) {
}
}