mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
Use IterableTypesDetection to determine if the given expression may be iterated #KT-14134 Fixed #KT-14129 Fixed
6 lines
79 B
Plaintext
Vendored
6 lines
79 B
Plaintext
Vendored
fun foo(list: List<String>) {
|
|
for (c in list[0]) {
|
|
<caret>
|
|
}
|
|
}
|