Files
kotlin-fork/compiler/testData/diagnostics/tests/dataFlowInfoTraversal/ForLoopRange.kt
T
2013-12-11 19:53:50 +04:00

7 lines
157 B
Kotlin

fun foo(arr: Array<Int>?) {
for (x in arr!!) {
<!DEBUG_INFO_AUTOCAST!>arr<!> : Array<Int>
}
<!DEBUG_INFO_AUTOCAST!>arr<!> : Array<Int>
}