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