Files
kotlin-fork/idea/testData/intentions/addForLoopIndices/inapplicableOnMap.kt
T
2015-07-21 14:59:08 +03:00

7 lines
112 B
Kotlin
Vendored

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