Files
kotlin-fork/compiler/testData/diagnostics/tests/dataFlowInfoTraversal/ArrayIndices.fir.kt
T

12 lines
193 B
Kotlin
Vendored

// !CHECK_TYPE
fun foo1(a: Int?, b: Array<Array<Int>>) {
b[a!!][a!!] = a
checkSubtype<Int>(a)
}
fun foo2(a: Int?, b: Array<Array<Int>>) {
b[0][a!!] = a
checkSubtype<Int>(a)
}