blob: a02cee56ff5647d7738a4aa08dabbec5112ae6ac [file]
// RUN_PIPELINE_TILL: FRONTEND
// CHECK_TYPE
fun foo1(a: Int?, b: Array<Array<Int>>) {
b[a!!][a<!UNNECESSARY_NOT_NULL_ASSERTION!>!!<!>] = a
checkSubtype<Int>(a)
}
fun foo2(a: Int?, b: Array<Array<Int>>) {
b[0][a!!] = a
checkSubtype<Int>(a)
}
/* GENERATED_FIR_TAGS: assignment, checkNotNullCall, classDeclaration, funWithExtensionReceiver, functionDeclaration,
functionalType, infix, integerLiteral, nullableType, smartcast, typeParameter, typeWithExtension */