mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
Use IterableTypesDetection to determine if the given expression may be iterated #KT-14134 Fixed #KT-14129 Fixed
6 lines
82 B
Plaintext
Vendored
6 lines
82 B
Plaintext
Vendored
fun foo(map: Map<String, Int>) {
|
|
for (entry in map) {
|
|
<caret>
|
|
}
|
|
}
|