blob: 4670defbf1803f42a565d75ea9af19bfb5953a0f [file]
// RUN_PIPELINE_TILL: FRONTEND
// ISSUE: KT-70507
// DIAGNOSTICS: -VARIABLE_WITH_REDUNDANT_INITIALIZER
// WITH_STDLIB
class A {
operator fun plus(x: String): A = this
}
fun Int.foo() = A()
fun foo(a: Array<A>) {
a[0] = a[0] + ""
a[0] += ""
(a[0]) <!UNRESOLVED_REFERENCE!>+=<!> ""
<!WRAPPED_LHS_IN_ASSIGNMENT_ERROR!>(a[0])<!> = a[0]
a[0] = (10 + 1).foo()
}
fun bar() {
var x = ""
<!WRAPPED_LHS_IN_ASSIGNMENT_ERROR!>(x)<!> = ""
(x) <!UNRESOLVED_REFERENCE!>+=<!> ""
}
fun baz() {
(mutableListOf("")) += ""
}
fun bak() {
val it = mutableListOf(mutableListOf(10))
(it[0]) += 20
}
/* GENERATED_FIR_TAGS: additiveExpression, assignment, classDeclaration, funWithExtensionReceiver, functionDeclaration,
integerLiteral, localProperty, operator, propertyDeclaration, stringLiteral, thisExpression */