// "Join with initializer" "false" // TOOL: org.jetbrains.kotlin.idea.inspections.SuspiciousCollectionReassignmentInspection // ACTION: Replace overloaded operator with function call // ACTION: Replace with ordinary assignment // WITH_RUNTIME fun test(otherList: List) { var list: List list = createList() list += otherList } fun createList(): List = listOf(1, 2, 3)