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

12 lines
297 B
Plaintext
Vendored

Resolve target: value-parameter p: kotlin.Any? smart-cast to kotlin.String
----------------------------------------------
fun x(s: String): Collection<String>{}
fun foo(p: Any?, p1: Any?) {
for (e in x(p as String)) {
/* STATEMENT DELETED: print(p1!!) */
}
<caret>p.length
}