Files
kotlin-fork/idea/testData/resolve/partialBodyResolve/For2.kt
T
Pavel Kirpichenkov 83144d59be Fix tests
2020-06-10 10:58:42 +03:00

9 lines
149 B
Kotlin
Vendored

fun x(s: String): Collection<String>{}
fun foo(p: Any?, p1: Any?) {
for (e in x(p as String)) {
print(p1!!)
}
<caret>p.length
}