Files
kotlin-fork/compiler/testData/diagnostics/tests/dataFlowInfoTraversal/ForLoopRange.kt
T
2012-11-16 17:56:20 +04:00

7 lines
105 B
Kotlin

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