Files
kotlin/idea/testData/codeInsight/postfix/forOnMap.kt.after
Denis Zharkov bd88919411 Refine predicate for 'iter' postfix template
Use IterableTypesDetection to determine if the given expression may be iterated

 #KT-14134 Fixed
 #KT-14129 Fixed
2017-03-15 10:47:12 +03:00

6 lines
82 B
Plaintext
Vendored

fun foo(map: Map<String, Int>) {
for (entry in map) {
<caret>
}
}