Retain data flow info after 'for' loop range expressions

This commit is contained in:
Alexander Udalov
2012-11-13 18:47:00 +04:00
parent 0b1c87a812
commit d629fe2d91
3 changed files with 16 additions and 2 deletions
@@ -0,0 +1,6 @@
fun foo(arr: Array<Int>?) {
for (x in arr!!) {
arr : Array<Int>
}
arr : Array<Int>
}