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