blob: 612111f52860fca5eaec2f72f96320ed4c72dec4 [file] [log] [blame]
// "Replace with assignment (original is empty)" "true"
// TOOL: org.jetbrains.kotlin.idea.inspections.SuspiciousCollectionReassignmentInspection
// WITH_RUNTIME
fun test(otherMap: Map<Int, Int>) {
var list = emptyMap<Int, Int>()
foo()
bar()
list <caret>+= otherMap
}
fun foo() {}
fun bar() {}