Files
kotlin/compiler/testData/diagnostics/tests/dataFlowInfoTraversal/ForLoopRange.kt
2014-10-01 18:52:52 +04:00

7 lines
159 B
Kotlin

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