Files
kotlin-fork/idea/testData/intentions/addForLoopIndicesIntention/inapplicableUnorderedCollection.kt
T

7 lines
112 B
Kotlin
Vendored

// IS_APPLICABLE: FALSE
// WITH_RUNTIME
fun foo(bar: Map<String, String>) {
for (a <caret>in bar) {
}
}