Partial body resolve: more efficient for-loop handling
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
Resolve target: value-parameter val p: kotlin.Any? smart-casted to kotlin.String
|
||||
Skipped statements:
|
||||
print(p1!!)
|
||||
@@ -0,0 +1,9 @@
|
||||
fun x(s: String): Collection<String>{}
|
||||
|
||||
fun foo(p: Any?, p1: Any?) {
|
||||
for (e in x(p as String)) {
|
||||
print(p1!!)
|
||||
}
|
||||
|
||||
<caret>p.size
|
||||
}
|
||||
Reference in New Issue
Block a user