blob: c6d4e6b5ea1ace7379ae204f92841895877da01b [file]
// RUN_PIPELINE_TILL: BACKEND
// FIR_IDENTICAL
fun main() {
var list = listOf(1)
val a: Int? = 2
a?.let { list += it }
}
operator fun <T> Iterable<T>.plus(element: T): List<T> = null!!
fun <T> listOf(vararg values: T): List<T> = null!!
/* GENERATED_FIR_TAGS: additiveExpression, assignment, checkNotNullCall, funWithExtensionReceiver, functionDeclaration,
integerLiteral, lambdaLiteral, localProperty, nullableType, operator, propertyDeclaration, safeCall, typeParameter,
vararg */