// "Change 'list' to val" "false" // ACTION: Replace overloaded operator with function call // ACTION: Replace with 'plusAssign()' call // ACTION: Replace with ordinary assignment // ERROR: Assignment operators ambiguity:
public operator fun Collection.plus(element: Int): List defined in kotlin.collections
public inline operator fun MutableCollection.plusAssign(element: Int): Unit defined in kotlin.collections // WITH_RUNTIME class Test { var list = mutableListOf(1) fun test() { list += 2 } }