// "Replace with assignment (original is empty)" "true" // TOOL: org.jetbrains.kotlin.idea.inspections.SuspiciousCollectionReassignmentInspection // WITH_RUNTIME fun test(otherMap: Map) { var list = mapOf() foo() bar() list += otherMap } fun foo() {} fun bar() {}