blob: 19f881c18088eee5a91ee9dae26d4270b7924efc [file]
// "Replace with assignment (original is empty)" "true"
// TOOL: org.jetbrains.kotlin.idea.inspections.SuspiciousCollectionReassignmentInspection
// WITH_RUNTIME
fun test(otherList: Set<Int>) {
var list = emptySet<Int>()
foo()
bar()
list = otherList
}
fun foo() {}
fun bar() {}