// "Join with initializer" "true" // TOOL: org.jetbrains.kotlin.idea.inspections.SuspiciousCollectionReassignmentInspection // WITH_RUNTIME fun test(otherList: List) { var list = createList() // comment list += otherList } fun createList(): List = listOf(1, 2, 3)