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